mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 12:44:20 +01:00
27 lines
496 B
YAML
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-16.04
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
- name: Run yarn install, check and build
|
|
run: |
|
|
cd html
|
|
yarn install
|
|
yarn run check
|
|
yarn run build
|