-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate to GitHub Actions (#95)
* chore: add GitHub Actions lint pipeline * chore: configure build matrix to run tests on multiple platforms * chore: delete travis ci config file Co-authored-by: jamesgeorge007 <[email protected]>
- Loading branch information
1 parent
4bb9619
commit ca6c3ec
Showing
2 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI | ||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- master | ||
- next | ||
workflow_dispatch: | ||
jobs: | ||
job: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | ||
node: ['12', '13', '14'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install packages | ||
run: npm ci | ||
- name: Run e2e tests | ||
run: npm run test |
This file was deleted.
Oops, something went wrong.