Skip to content

build: Bump development versions #24

build: Bump development versions

build: Bump development versions #24

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 12.x, 14.x, 16.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm run coverage
- name: Upload coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: node-${{ matrix.node }}
parallel: true
coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls report
uses: coverallsapp/github-action@master
with:
github-token: ${{ github.token }}
parallel-finished: true