We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90355a9 commit 306b73fCopy full SHA for 306b73f
1 file changed
.github/workflows/test.yml
@@ -4,27 +4,17 @@ name: test
4
5
jobs:
6
no-secrets:
7
- container: almalinux:10
+ container: debian:trixie
8
runs-on: [self-hosted, Linux, X64]
9
10
steps:
11
- - uses: actions/checkout@v2
12
- with:
13
- submodules: recursive
14
- - run: pwd
15
-
16
- secret-bad:
17
- container: debian:bullseye
18
- runs-on: [self-hosted, Linux, X64]
19
- env:
20
- GHA_PREEMPTIBLE: "false"
21
- steps:
22
- - run: _secret_ipv6-test || echo test
23
24
- secret-ok:
25
26
27
28
29
30
- - run: _secret_ipv6-test
+ - run: |
+ apt-get -qqy --update install git nodejs npm
+ pushd /tmp
+ git clone https://github.com/actions/checkout
+ cd checkout
+ npm ci
+ npm run build
+ node dist/index.js
+ popd
+ ls
0 commit comments