Skip to content

Commit bfad57e

Browse files
committed
test
1 parent 90355a9 commit bfad57e

1 file changed

Lines changed: 11 additions & 21 deletions

File tree

.github/workflows/test.yml

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,17 @@ name: test
44

55
jobs:
66
no-secrets:
7-
container: almalinux:10
7+
container: debian:trixie
88
runs-on: [self-hosted, Linux, X64]
99

1010
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-
container: debian:bullseye
26-
runs-on: [self-hosted, Linux, X64]
27-
env:
28-
GHA_PREEMPTIBLE: "false"
29-
steps:
30-
- run: _secret_ipv6-test
11+
- run: |
12+
apt-get -qqy --update install git nodejs npm
13+
pushd /tmp
14+
git clone https://github.com/actions/checkout
15+
cd checkout
16+
npm ci
17+
npm run build
18+
node dist/index.js
19+
popd
20+
ls

0 commit comments

Comments
 (0)