Skip to content

Add guards against prototype pollution #24

Add guards against prototype pollution

Add guards against prototype pollution #24

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