Bump actions/setup-node from 4 to 6 #530
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: Status Checks | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [18, 20, 22, 24, 25] | |
| name: Build and Test with Node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| always-auth: true | |
| node-version: ${{ matrix.node }} | |
| registry-url: "https://npm.pkg.github.com" | |
| scope: "@noahm" | |
| cache: "yarn" | |
| - name: Init project | |
| run: yarn --immutable | |
| - name: Webpack Build | |
| run: yarn build | |
| - name: Unit Tests | |
| run: yarn test | |
| checks: | |
| runs-on: ubuntu-latest | |
| name: Lints | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| registry-url: "https://npm.pkg.github.com" | |
| scope: "@noahm" | |
| cache: "yarn" | |
| - name: Init project | |
| run: yarn --immutable | |
| - name: eslint | |
| run: yarn lint | |
| - name: prettier | |
| run: yarn format --check |