File tree 2 files changed +57
-1
lines changed
2 files changed +57
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : urchin tests
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ tests :
7
+ permissions :
8
+ contents : write
9
+
10
+ name : " tests"
11
+ runs-on : ubuntu-latest
12
+ defaults :
13
+ run :
14
+ shell : ' script -q -e -c "${{ matrix.shell }} {0}"'
15
+
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ include :
20
+ - shell : bash
21
+ suite : install_script
22
+ # shell:
23
+ # - bash
24
+ # suite:
25
+ # - install_script
26
+
27
+ steps :
28
+ - name : Harden Runner
29
+ uses : step-security/harden-runner@v1
30
+ with :
31
+ allowed-endpoints :
32
+ github.com:443
33
+ registry.npmjs.org:443
34
+ raw.githubusercontent.com:443
35
+ nodejs.org:443
36
+ iojs.org:443
37
+ - uses : actions/checkout@v3
38
+ - run : sudo ${{ matrix.shell }} --version 2> /dev/null || dpkg -s ${{ matrix.shell }} 2> /dev/null || which ${{ matrix.shell }}
39
+ - run : curl --version
40
+ - run : wget --version
41
+ - uses : ljharb/actions/node/run@main
42
+ name : ' npm install && version checks'
43
+ with :
44
+ node-version : ' lts/*'
45
+ skip-ls-check : true
46
+ shell-command : echo installed
47
+ - run : npm ls urchin
48
+ - run : npm bin
49
+ - run : env
50
+ - run : make TERM=xterm-256color TEST_SUITE="${{ matrix.suite }}" SHELL="${{ matrix.shell }}" URCHIN="$(npm bin)/urchin" test-${{ matrix.shell }}
51
+
52
+ nvm :
53
+ name : ' all test suites, all shells'
54
+ needs : [tests]
55
+ runs-on : ubuntu-latest
56
+ steps :
57
+ - run : ' echo tests completed'
Original file line number Diff line number Diff line change 70
70
- PATH="/usr/lib/ccache/:$PATH"
71
71
- NVM_DIR="${TRAVIS_BUILD_DIR}"
72
72
matrix :
73
- - SHELL=bash TEST_SUITE=install_script
74
73
- SHELL=sh TEST_SUITE=fast
75
74
- SHELL=dash TEST_SUITE=fast
76
75
- SHELL=bash TEST_SUITE=fast
You can’t perform that action at this time.
0 commit comments