-
-
Notifications
You must be signed in to change notification settings - Fork 6
22 lines (22 loc) · 702 Bytes
/
build.yml
File metadata and controls
22 lines (22 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Build Stack-chan Firmware
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: ./.github/actions/setup
- name: Build
run: source $HOME/.local/share/xs-dev-export.sh && npm run build
working-directory: ./firmware
- name: Build CoreS3
run: source $HOME/.local/share/xs-dev-export.sh && npm run build --target=esp32/m5stack_cores3
working-directory: ./firmware
- name: Check Format
run: npm run format
working-directory: ./firmware
- name: Lint
run: npm run lint
working-directory: ./firmware