WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson e76ce513d6
Some checks failed
Compile / Compile (push) Failing after 1m37s
How can you not have curl installed by default what the fuck
2023-05-30 21:19:53 +03:00

18 lines
470 B
YAML

name: Compile
run-name: ${{ github.actor }} is compiling
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Setup PlatformIO
run: |
apt update
apt -y install platformio curl
- name: Setup node
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs
- uses: actions/checkout@v3
- run: cd ${{ github.workspace }}
- run: pio run