Skip to content

Commit

Permalink
cleanup, second attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Nov 19, 2024
1 parent 6a560f4 commit 77ed5dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Remove stale files
run: rm -rfv node_modules
- name: Setup environment
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -44,6 +42,8 @@ jobs:
cache: 'npm'
- name: Install dependencies
run: sudo apt-get update && sudo apt-get -y install dpkg fakeroot rpm build-essential libudev-dev
- name: Remove stale files
run: rm -rfv node_modules
- name: Install deps
uses: nick-fields/retry@v3
with:
Expand Down Expand Up @@ -74,8 +74,6 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Remove stale files
run: rm -rfv node_modules
- name: Setup environment
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -100,6 +98,8 @@ jobs:
# Workaround due to a bug in node-gyp: https://github.com/electron/rebuild/issues/1116
- name: Install Setuptools
run: python3 -m pip install --break-system-packages setuptools
- name: Remove stale files
run: rm -rfv node_modules
- name: Install deps
uses: nick-fields/retry@v3
with:
Expand All @@ -124,8 +124,6 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Remove stale files
run: rm -rfv node_modules
- name: Setup environment
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -150,6 +148,8 @@ jobs:
# Workaround due to a bug in node-gyp: https://github.com/electron/rebuild/issues/1116
- name: Install Setuptools
run: python3 -m pip install --break-system-packages setuptools
- name: Remove stale files
run: rm -rfv node_modules
- name: Install deps
uses: nick-fields/retry@v3
with:
Expand Down

0 comments on commit 77ed5dd

Please sign in to comment.