Skip to content

chore: disable windows action #89

chore: disable windows action

chore: disable windows action #89

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --version
- run: yarn --frozen-lockfile
- run: yarn test
build-windows:
if: ${{ false }} # disable till windows support in gh workflows
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18]
os: [windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --version
- run: yarn --frozen-lockfile
- run: yarn test