Skip to content

Update packages/yasqe/src/index.ts #281

Update packages/yasqe/src/index.ts

Update packages/yasqe/src/index.ts #281

Workflow file for this run

name: Run tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up NodeJS
uses: actions/setup-node@v6
with:
node-version: "lts/*"
cache: npm
- name: Disable AppArmor
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run test