Skip to content

[Snyk] Upgrade core-js from 3.19.1 to 3.31.0 #33

[Snyk] Upgrade core-js from 3.19.1 to 3.31.0

[Snyk] Upgrade core-js from 3.19.1 to 3.31.0 #33

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Build and test package
run: |
npm ci
npm run test:unit
env:
CI: true