Skip to content

Commit

Permalink
enable corepack after node change
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed Jun 30, 2024
1 parent f25541a commit b03f32d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Enable Corepack
run: corepack enable
- name: Install
run: yarn install
- name: Build
Expand All @@ -42,11 +42,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Enable Corepack
run: corepack enable
- run: yarn install
- name: Run Linter
run: yarn lint
Expand All @@ -62,11 +62,11 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Enable Corepack
run: corepack enable
- run: yarn install
- name: Run Unit Tests
timeout-minutes: 10
Expand All @@ -85,11 +85,11 @@ jobs:
ELECTRON_VERSION: ${{ matrix.electron }}
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Enable Corepack
run: corepack enable
- run: yarn install
- name: Run E2E Tests
timeout-minutes: 30
Expand Down

0 comments on commit b03f32d

Please sign in to comment.