Skip to content

Commit

Permalink
ci: replace travis-ci with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
3imed-jaberi committed Apr 10, 2023
1 parent 3da5107 commit 0c47e19
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Continuous Integration

on:
- push
- pull_request

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14
- 15
- 16
- 17
- 18
- 19
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install
- name: Check linter
run: yarn lint
- name: Run tests
run: yarn test-ci

0 comments on commit 0c47e19

Please sign in to comment.