This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
1.7.0 #696
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
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "10" | |
- name: npm install, test and build | |
run: | | |
npm ci | |
npm run build | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |