Skip to content

Update synckit 0.9.0 → 0.9.2 (minor) #200

Update synckit 0.9.0 → 0.9.2 (minor)

Update synckit 0.9.0 → 0.9.2 (minor) #200

Workflow file for this run

name: Test
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
strategy:
matrix:
# os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn build
- run: xvfb-run -a yarn test
if: runner.os == 'Linux'