Skip to content

build(deps-dev): bump zx from 7.2.3 to 8.0.2 #622

build(deps-dev): bump zx from 7.2.3 to 8.0.2

build(deps-dev): bump zx from 7.2.3 to 8.0.2 #622

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build-and-test
on: [pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: yarn
- run: yarn install
- run: yarn test
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: yarn
- run: yarn install
- run: yarn build
# build-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: true
# - uses: actions/setup-node@v4
# with:
# node-version-file: .node-version
# cache: yarn
# - run: yarn install
# - run: yarn build
# shell: pwsh
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: yarn
- run: yarn install
- run: yarn build