Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@ name: Continuos Integration workflow

on: pull_request

env:
HUSKY: 0

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Check types
run: npm run type-check
uses: actions/checkout@v4

- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: 18.x
- name:
Install
# Issue turborepo install on linux: https://github.com/vercel/turbo/issues/3328#issuecomment-1413206817
# It fails sometimes
run: |
npm install -D --arch=x64 --platform=linux turbo
npm ci
- name: Tests
run: npm test
run: npm run test