Skip to content

Commit

Permalink
ci: Cleanup un-necessary steps
Browse files Browse the repository at this point in the history
Signed-off-by: eXhumer <[email protected]>
  • Loading branch information
eXhumer committed Aug 21, 2024
1 parent c0ee5be commit ce31957
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Setup Node.js with cache
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -81,7 +81,6 @@ jobs:
matrix:
arch: [x64]
node: [22]
python: [3.12]

steps:
- name: Checkout
Expand All @@ -90,16 +89,10 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Setup Node.js with cache
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python }}'

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -124,7 +117,6 @@ jobs:
matrix:
arch: [x64, ia32]
node: [22]
python: [3.12]

steps:
- name: Checkout
Expand All @@ -133,16 +125,10 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Setup Node.js with cache
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python }}'

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit ce31957

Please sign in to comment.