Skip to content

Commit

Permalink
Switch to GitHub Actions and Yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Sep 18, 2021
1 parent 98408de commit 12403d9
Show file tree
Hide file tree
Showing 4 changed files with 4,010 additions and 5,989 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Lint and tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 12
- 14
- 16
architecture:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 12403d9

Please sign in to comment.