chore: update CI workflow to pack plugin with custom output filename #40
Workflow file for this run
This file contains hidden or 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: Workflows | |
| # This workflow will check workflows when they change. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/*.yml | |
| - .github/workflows/*.yaml | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - .github/*.yml | |
| - .github/workflows/*.yaml | |
| # Cancel in-progress runs for pull requests when developers push changes. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| workflows: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: yarn | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn prettier --check .github |