Skip to content

example: rename master to main #11

example: rename master to main

example: rename master to main #11

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: yarn
- run: yarn lint
- run: yarn format:check
- run: yarn test --coverage --verbose
- run: yarn build
- run: git diff --exit-code --name-only
- uses: codecov/codecov-action@v1