mirror of
https://github.com/remko/waforth
synced 2025-01-29 08:34:33 +01:00
21 lines
401 B
YAML
21 lines
401 B
YAML
|
name: Build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: 14
|
||
|
cache: 'yarn'
|
||
|
- run: sudo apt-get install wabt
|
||
|
- run: yarnpkg --pure-lockfile
|
||
|
- run: yarnpkg build
|
||
|
- run: yarnpkg lint
|
||
|
- run: yarnpkg test --coverage
|