[Snyk] Security upgrade node from alpine to 21.6.0-alpine3.19 #149
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: Node.js CI | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
ci: | |
name: Lint / Build / Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout Source Files | |
uses: actions/checkout@v2 | |
- name: Use Node.js v${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Verify Build | |
run: yarn build | |
- name: Lint Source Files | |
run: yarn lint | |
- name: Run Tests | |
run: yarn test |