Skip to content

Commit

Permalink
Merge 7a6408d into c119f39
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Dec 13, 2020
2 parents c119f39 + 7a6408d commit c179141
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run lint:dts
- run: npm test
- run: npm run test:server:coverage
- run: mkdir -p coverage && npx nyc report --reporter=text-lcov > coverage/lcov.info
- run: npm run build
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c179141

Please sign in to comment.