Fix typo in subsection title from 'Nickles' to 'Nickels' (#122) #451
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
| # This workflow will do a clean install of node dependencies, build the source | |
| # code across multiple Node.js versions, and lint the project. | |
| name: Build & Lint | |
| on: push | |
| env: | |
| node-version: "22" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ env.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.node-version }} | |
| - name: Build and test | |
| run: | | |
| corepack enable | |
| yarn install --immutable | |
| yarn run test |