Skip to content

Commit 415ef0d

Browse files
committed
build(dev): test node.js CI linux builds with newer docker version
Replaces [addnab/docker-run-action] with [tj-actions/docker-run] Apparently, [addnab/docker-run-action] is no longer maintained; see addnab/docker-run-action#62. [addnab/docker-run-action]: https://github.com/addnab/docker-run-action [tj-actions/docker-run]: https://github.com/tj-actions/docker-run
1 parent af0328a commit 415ef0d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/node-js-packaging.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,14 +293,15 @@ jobs:
293293
if: ${{ contains(matrix.target, 'armv7') }}
294294
- name: Test bindings
295295
if: matrix.target != 'x86_64-unknown-linux-gnu'
296-
uses: addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185 # v3
296+
uses: tj-actions/docker-run@1d25a677da8f1243a138dc5db21e307e92986ffe # v2.2.1
297297
with:
298298
image: ${{ steps.docker.outputs.IMAGE }}
299+
name: test-${{ matrix.target }}
299300
options: >- # zizmor: ignore[template-injection]
300301
-v ${{ github.workspace }}:${{ github.workspace }}
301302
-w ${{ github.workspace }}
302303
--platform ${{ steps.docker.outputs.PLATFORM }}
303-
run: yarn test
304+
args: yarn test
304305
- name: Test x86_64-unknown-linux-gnu
305306
if: matrix.target == 'x86_64-unknown-linux-gnu'
306307
run: yarn test

cspell.config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
version: "0.2"
22
language: en
33
words:
4-
- addnab
54
- armv
65
- bindgen
76
- binstall

0 commit comments

Comments
 (0)