Skip to content

Commit

Permalink
Chore: Run tsc first and cache on vercel before running tsc dependant…
Browse files Browse the repository at this point in the history
… jobs
  • Loading branch information
SBoudrias committed Jul 28, 2024
1 parent 7a061f1 commit 884a9e7
Showing 1 changed file with 46 additions and 8 deletions.
54 changes: 46 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
name: CI
on: [push, pull_request]

env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}

jobs:
Linting:
Compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
Expand All @@ -18,8 +26,26 @@ jobs:
run: yarn tsc
- name: Typescript - test files
run: yarn tsc:test
- name: Eslint
run: yarn eslint .

Linting:
runs-on: ubuntu-latest
needs: Compile
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn tsc
- run: yarn eslint .
- name: Validate package setup
run: |
yarn setup
Expand All @@ -43,13 +69,13 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- name: Test packages
run: yarn vitest --run --coverage
- run: yarn vitest --run --coverage
- uses: codecov/codecov-action@v4

Integration:
name: Typescript & Integration Tests
name: Integration Tests
runs-on: ubuntu-latest
needs: Compile
strategy:
fail-fast: false
matrix:
Expand All @@ -58,22 +84,34 @@ jobs:
- 18
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- name: Typescript
run: yarn tsc
- run: yarn tsc
- name: Integration tests
run: yarn node --test integration/

Package:
name: Are the types wrong?
runs-on: ubuntu-latest
needs: Compile
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 884a9e7

Please sign in to comment.