We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 182b754 commit 60cbeccCopy full SHA for 60cbecc
2 files changed
.github/workflows/ci.yml
@@ -6,6 +6,12 @@ on:
6
jobs:
7
test:
8
runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ container:
12
+ - null
13
+ - ubuntu
14
+ container: ${{ matrix.container }}
15
steps:
16
- uses: actions/checkout@v4
17
- run: echo '{}' > deno.json
action.yml
@@ -16,5 +16,8 @@ runs:
cd "${{ inputs.path }}"
fi
18
pkgx --internal.activate "$PWD" > file
19
- node parse.js
+ if ! command -v node >/dev/null 2>&1; then
20
+ eval "$(pkgx +node)"
21
+ fi
22
+ node $GITHUB_ACTION_PATH/parse.js
23
shell: bash
0 commit comments