Skip to content

Fixing some errors that showed up on build machine #244

Fixing some errors that showed up on build machine

Fixing some errors that showed up on build machine #244

Workflow file for this run

name: Node CI
on:
push:
env:
HUSKY: 0
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
jobs:
test:
name: "Test (Node.js v${{ matrix.node-version }})"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14, 16, 18 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --immutable
- run: yarn turbo run --filter='./packages/node*' lint
- run: yarn turbo run --filter='./packages/node*' test