Skip to content

Merge branch 'main' of https://github.com/d0rich/esprit #209

Merge branch 'main' of https://github.com/d0rich/esprit

Merge branch 'main' of https://github.com/d0rich/esprit #209

Workflow file for this run

name: Test
on:
push:
branches:
- main
- next
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Installing packages
run: npm ci
- name: Prepare
run: npm run prepare:all
- name: Build
run: npm run build:all
- name: Lint
run: npm run lint
- name: Tests
run: npx turbo run test