mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 13:48:40 +00:00
16 lines
329 B
YAML
16 lines
329 B
YAML
name: Strudel Build
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: "npm"
|
|
- run: npm ci && cd repl && npm ci && cd ../tutorial && npm ci
|
|
- run: npm run build
|