Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet committed Feb 13, 2025
1 parent c5f7bcf commit 73662a4
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ jobs:
- run: yarn test:unit

e2e:
strategy:
fail-fast: false
matrix:
node:
- 18

timeout-minutes: 10

name: End to End
Expand All @@ -51,17 +45,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Node ${{matrix.node}}.x
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}.x
node-version-file: 'package.json'

- name: Cache build:all
id: cache-build
uses: actions/cache@v4
with:
path: packages/published/**/dist
key: ${{ matrix.node }}-cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
key: node18-cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}

- name: Cache playwright binaries
id: cache-playwright-binaries
Expand Down Expand Up @@ -105,18 +99,13 @@ jobs:
retention-days: 3

lint:
strategy:
matrix:
node:
- 18

name: Linting
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Node ${{matrix.node}}.x
- name: Install Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
Expand All @@ -126,7 +115,7 @@ jobs:
uses: actions/cache@v4
with:
path: packages/published/**/dist
key: ${{ matrix.node }}-cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
key: node18-cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}

- run: yarn install

Expand Down

0 comments on commit 73662a4

Please sign in to comment.