Skip to content

fix: make build scripts cross-platform (Windows) #403

fix: make build scripts cross-platform (Windows)

fix: make build scripts cross-platform (Windows) #403

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn test
env:
CI: true
- run: yarn run lint