Files
issues-helper/.github/workflows/ci.yml
2021-02-03 11:03:24 +08:00

20 lines
305 B
YAML

name: ci
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@main
- name: install
run: yarn install
- name: format
run: yarn format-check
- name: package
run: yarn package