Skip to content

Updates the Node version set via the .nvmrc file #464

Updates the Node version set via the .nvmrc file

Updates the Node version set via the .nvmrc file #464

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn build
- run: yarn package
- name: Archive packages
uses: actions/upload-artifact@v2
with:
name: packages
path: artifacts