Skip to content

fix: Update tutorial.md (#1116) #152

fix: Update tutorial.md (#1116)

fix: Update tutorial.md (#1116) #152

Workflow file for this run

name: CI
on: push
jobs:
test:
env:
NODE_ENV: development
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Test
run: |
npm install -g codecov
npm install
npm test
codecov