mirror of
https://github.com/remko/waforth
synced 2024-12-28 10:00:06 +01:00
15 lines
289 B
YAML
15 lines
289 B
YAML
|
name: Build VS Code Extension
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
workflow_dispatch:
|
||
|
workflow_call:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: ./.github/actions/setup
|
||
|
- run: make -C src/web/vscode-extension install-deps package
|