Skip to content

Merge branch 'v7-support' of https://github.com/yordan-kanchelov/pixi… #3

Merge branch 'v7-support' of https://github.com/yordan-kanchelov/pixi…

Merge branch 'v7-support' of https://github.com/yordan-kanchelov/pixi… #3

Workflow file for this run

name: Windows build
on: [push, pull_request]
jobs:
build:
runs-on: [windows-latest, macos-latest, ubuntu-latest]
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm ci
- name: lint
run: |
npm run lint
- name: build, and test
run: |
npm run build
npm test --if-present
env:
CI: true