Skip to content

specify same node version #77

specify same node version

specify same node version #77

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.14.2]
steps:
- uses: actions/checkout@v1
- name: Node & NPM versions
run: |
echo Node Version
node --version
echo
echo NPM Version
npm --version
echo
- name: Install NPM packages
run: npm ci -ws
- name: Build All Packages
run: |
echo Building...
npm run build-all