moq-rs/.github/workflows/web.yml

27 lines
454 B
YAML
Raw Normal View History

2023-05-23 03:12:14 +00:00
name: Web
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install
working-directory: web
run: yarn install
2023-05-23 03:19:07 +00:00
- name: Cert
working-directory: cert
run: ./generate
2023-05-23 03:12:14 +00:00
- name: Build
working-directory: web
run: yarn build
- name: Lint
working-directory: web
run: yarn lint