fix: generate action and readmes and fixed some github data problems #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PoC - Check plugins structure | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- develop | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Check Eslint and Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "node_version=$(cat .github/nodejs.version)" >> $GITHUB_ENV | |
- name: "use node ${{ env.node_version }}" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "${{ env.node_version }}" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check plugins structure | |
run: yarn run check:plugins |