Skip to content

chore: bump p5 to 1.9.2 and @types/p5 to 1.7.6 #134

chore: bump p5 to 1.9.2 and @types/p5 to 1.7.6

chore: bump p5 to 1.9.2 and @types/p5 to 1.7.6 #134

Workflow file for this run

name: 'CI'
on: pull_request
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint:check
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: Test
run: npm run test:unit