Skip to content

ci: add scheduled security audit workflow (#14) #48

ci: add scheduled security audit workflow (#14)

ci: add scheduled security audit workflow (#14) #48

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 24
- 22
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Ultracite check
run: npm run check
- run: npm test