- commit
- 3aa28daa8f909b7199278c638b40e4d238a5c181
- parent
- b13f37b1176869471a322557d36eee9e78d9793e
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-04-20 11:09
replace travis by github actions
Diffstat
| A | .github/workflows/main.yml | 14 | ++++++++++++++ |
| D | .travis.yml | 16 | ---------------- |
2 files changed, 14 insertions, 16 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
@@ -0,0 +1,14 @@ -1 1 on: [push] -1 2 jobs: -1 3 test: -1 4 runs-on: ubuntu-latest -1 5 steps: -1 6 - uses: actions/checkout@v2 -1 7 - uses: actions/setup-node@v3 -1 8 - name: dependencies -1 9 run: npm install -1 10 - run: mkdir -p dist -1 11 - name: build -1 12 run: npx browserify index.js -o dist/aria.js -s aria -1 13 - name: test -1 14 run: npx mocha-headless-chrome -a no-sandbox -f test/index.html
diff --git a/.travis.yml b/.travis.yml
@@ -1,16 +0,0 @@1 -1 sudo: false2 -1 language: node_js3 -1 node_js:4 -1 node5 -1 install:6 -1 - npm install7 -1 - make clean8 -1 - make9 -1 cache:10 -1 directories:11 -1 - node_modules12 -1 - $HOME/.nvm13 -1 script:14 -1 - npx mocha-headless-chrome -a no-sandbox -f test/index.html15 -1 notifications:16 -1 email: false