File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
+ set -euo pipefail
2
3
OUR_NIX=$( readlink -f $( which nix) )
3
4
OUR_NIX_PARENT=$( dirname $OUR_NIX )
4
5
TEE=$( which tee)
Original file line number Diff line number Diff line change @@ -193,10 +193,6 @@ jobs:
193
193
needs : changes
194
194
if : ${{ ! (needs.changes.outputs.package-lock-json == 'true' && github.actor == 'renovate[bot]' && github.event_name == 'pull_request') }}
195
195
steps :
196
- - name : Delete huge unnecessary tools folder
197
- run : |
198
- cd /opt
199
- find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';'
200
196
- uses : actions/checkout@v4
201
197
- uses : ./.github/actions/setup-nix
202
198
with :
@@ -240,10 +236,6 @@ jobs:
240
236
needs : changes
241
237
if : ${{ ! (needs.changes.outputs.package-lock-json == 'true' && github.actor == 'renovate[bot]' && github.event_name == 'pull_request') }}
242
238
steps :
243
- - name : Delete huge unnecessary tools folder
244
- run : |
245
- cd /opt
246
- find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';'
247
239
- uses : actions/checkout@v4
248
240
- uses : ./.github/actions/setup-nix
249
241
with :
@@ -286,9 +278,6 @@ jobs:
286
278
runs-on : [self-hosted, Linux, X64]
287
279
steps :
288
280
- uses : actions/checkout@v4
289
- - name : Install pre-commit
290
- run : |
291
- nix develop .#ci --command python -m pip install pre-commit
292
281
- name : Install node dependencies
293
282
run : |
294
283
nix develop .#ci --command npm ci
Original file line number Diff line number Diff line change 155
155
pkgs . python313
156
156
pkgs . nodejs_22
157
157
pkgs . nixpkgs-fmt
158
+ pkgs . pre-commit
159
+ pkgs . which
158
160
] ;
159
161
} ;
160
162
forNpmTesting = pkgs . mkShell {
You can’t perform that action at this time.
0 commit comments