Skip to content

Commit

Permalink
fix(ci): increase timeout during for cli to be aborted
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-coulon committed Jan 26, 2024
1 parent 77ab064 commit d072571
Show file tree
Hide file tree
Showing 5 changed files with 229 additions and 198 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/skott.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

steps:
- uses: actions/checkout@v3

Expand All @@ -24,10 +25,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- uses: pnpm/action-setup@v2.2.4
with:
version: 8
run_install: false
- name: Enable pnpm
run: corepack enable

- name: Get pnpm store directory
id: pnpm-cache
Expand All @@ -48,6 +47,11 @@ jobs:

- name: Build project
run: pnpm -r build

- name: Run tests
run: pnpm -r test

- name: Run unit tests
run: pnpm -r test:unit

- name: Run integration tests
run: pnpm -r test:integration
env:
CI: true
Loading

0 comments on commit d072571

Please sign in to comment.