chore(deps): bump the npm group across 1 directory with 10 updates #307
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: gha | |
| on: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6.0.0 | |
| - name: Use Node version defined in manifest | |
| uses: volta-cli/action@v4.2.1 | |
| - name: Node.js version | |
| run: node -v | |
| - name: npm version | |
| run: npm -v | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Check for linting errors | |
| run: npm run lint | |
| - name: Check for build errors | |
| run: npm run bld | |
| # - name: Run test suite | |
| # run: npm test |