Skip to content

[Snyk] Security upgrade jinja2 from 2.11.3 to 3.1.4 #1550

[Snyk] Security upgrade jinja2 from 2.11.3 to 3.1.4

[Snyk] Security upgrade jinja2 from 2.11.3 to 3.1.4 #1550

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
id: node-cache
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-node-
- run: npm ci
- run: npm run build
- run: npm test