Skip to content

Commit f36516b

Browse files
committed
[Tests] move install script tests to github actions
1 parent dc69112 commit f36516b

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

.github/workflows/tests.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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'

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ env:
7070
- PATH="/usr/lib/ccache/:$PATH"
7171
- NVM_DIR="${TRAVIS_BUILD_DIR}"
7272
matrix:
73-
- SHELL=bash TEST_SUITE=install_script
7473
- SHELL=sh TEST_SUITE=fast
7574
- SHELL=dash TEST_SUITE=fast
7675
- SHELL=bash TEST_SUITE=fast

0 commit comments

Comments
 (0)