Skip to content

Disable last order of the vacations #183

Disable last order of the vacations

Disable last order of the vacations #183

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.17.0
cache: 'npm'
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Linter
run: npm run lint
- name: Types
run: npm run check:types
- name: Tests
run: npm run test:unit
- name: Build
run: npm run build