Skip to content

[Snyk] Security upgrade node from alpine to 21.6.0-alpine3.19 #149

[Snyk] Security upgrade node from alpine to 21.6.0-alpine3.19

[Snyk] Security upgrade node from alpine to 21.6.0-alpine3.19 #149

Workflow file for this run

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