Skip to content

[Snyk] Upgrade: ,

[Snyk] Upgrade: , #20

Workflow file for this run

name: "Test package"
on:
pull_request:
branches:
- "master"
types:
- "opened"
- "synchronize"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Use Node.js"
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: "Install npm"
run: npm ci
- name: "Run all tests"
run: npm run test