Skip to content

Pin dependencies

Pin dependencies #60

Workflow file for this run

name: Tests
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
release:
name: Tests
runs-on: ubuntu-22.04
steps:
- name: Checkout
id: checkout
# from https://github.com/actions/checkout/commits/main
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run build --if-present
- name: Run tests
run: npm run coverage