Skip to content

Merge pull request #12 from clickbar/fix/prototype-pollution #28

Merge pull request #12 from clickbar/fix/prototype-pollution

Merge pull request #12 from clickbar/fix/prototype-pollution #28

Workflow file for this run

name: Tests
on: [push]
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
node-version: '18'
# Skip post-install scripts here, as a malicious
# script could steal NODE_AUTH_TOKEN.
- run: pnpm install --ignore-scripts
# `pnpm rebuild` will run all those post-install scripts for us.
- run: pnpm rebuild && pnpm run --if-present prepare
- run: pnpm test