Skip to content

5.8.4

5.8.4 #909

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install and test
run: |
yarn install --frozen-lockfile
yarn test
env:
CI: true