- commit
- 9ae7fa657a400fe8c0dcc3a78ccc64c644b00ef8
- parent
- 2df9742b39c714bd74369dd45ff8a307cc203bd6
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2022-02-16 07:34
migrate from travis to github actions
Diffstat
| A | .github/workflows/main.yml | 8 | ++++++++ |
| D | .travis.yml | 15 | --------------- |
2 files changed, 8 insertions, 15 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
@@ -0,0 +1,8 @@ -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 - run: npm install -1 8 - run: npm test
diff --git a/.travis.yml b/.travis.yml
@@ -1,15 +0,0 @@1 -1 sudo: false2 -1 language: node_js3 -1 node_js:4 -1 - "4.3"5 -1 install:6 -1 - npm install7 -1 cache:8 -1 directories:9 -1 - node_modules10 -1 - $HOME/.nvm11 -1 script:12 -1 - npm test13 -1 - npm run lint14 -1 notifications:15 -1 email: false