Skip to content

Fix: Workflow stuff... #5

Fix: Workflow stuff...

Fix: Workflow stuff... #5

Workflow file for this run

name: "Run all tests"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run prettier
run: npm run prettier
- name: Run linter
run: npm run lint
- name: Build
run: npm run build:mini
- name: Audit packages
run: npm audit --audit-level=high