Skip to content

trigger build

trigger build #146

Workflow file for this run

name: node
on:
push:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
if: ${{ always() }}
- name: Test
run: npm run test -- --coverage
- name: Report coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}