Files
ttyd/.github/workflows/frontend.yml
2022-10-19 00:39:29 +08:00

27 lines
496 B
YAML

name: frontend
on:
push:
paths:
- ".github/workflows/frontend.yml"
- "html/*"
pull_request:
paths:
- ".github/workflows/frontend.yml"
- "html/*"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Run yarn install, check and build
run: |
cd html
yarn install
yarn run check
yarn run build