Skip to content

Update dependency sympy to v1.13.3 #234

Update dependency sympy to v1.13.3

Update dependency sympy to v1.13.3 #234

Workflow file for this run

name: node
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js latest
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
npm i -g pnpm
pnpm i
pip install build
- name: Run lint
run: |
pnpm run lint
- name: Build
run: |
pnpm run build