Skip to content

ci: test on pico-sdk 1.5.1 #122

ci: test on pico-sdk 1.5.1

ci: test on pico-sdk 1.5.1 #122

Workflow file for this run

name: Test and Lint
on:
push:
pull_request:
branches: [main]
jobs:
test:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install packages
run: npm ci
- name: Prettier
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test code
run: npm test