Skip to content

Update specified Node version for GitHub CI action to setup Node #995

Update specified Node version for GitHub CI action to setup Node

Update specified Node version for GitHub CI action to setup Node #995

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: yarn build
- run: yarn lint
- run: yarn test --ci --watch-all=false