Skip to content

Commit

Permalink
chore: setup ci (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Mar 16, 2022
1 parent d01cbcc commit 07464f7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node.js CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- run: npm run compile
- run: npm test
- uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ github.token }}

0 comments on commit 07464f7

Please sign in to comment.