Skip to content

[Snyk] Fix for 1 vulnerabilities #122

[Snyk] Fix for 1 vulnerabilities

[Snyk] Fix for 1 vulnerabilities #122

Workflow file for this run

name: Lint and Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Unit Tests
run: yarn test