Skip to content

Include shared folder in build #362

Include shared folder in build

Include shared folder in build #362

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Run linter
run: npm run lint
- name: Security audit
run: npm audit --audit-level=high
continue-on-error: false
- name: Run tests
run: npm run test:run
- name: Build
run: npm run build