Skip to content

Commit

Permalink
Merge pull request #3 from inthepocket/feature/github-ci
Browse files Browse the repository at this point in the history
Add Github CI
  • Loading branch information
gboston authored Mar 12, 2021
2 parents 34c3fe0 + 094670b commit 4286a12
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI workflow
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run types -- --noEmit
- name: Test
run: npm test

0 comments on commit 4286a12

Please sign in to comment.