Skip to content

💚 let GH action run for all branches #8

💚 let GH action run for all branches

💚 let GH action run for all branches #8

Workflow file for this run

name: Node CI
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 12
uses: actions/setup-node@master
with:
node-version: '12.x'
- run: npm ci
- run: npm test
- name: codecov
run: npx codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}