mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 18:25:58 +08:00

* feat: add exclude-labels for query issues * add formay * Update ci.yml * docs: add readme
23 lines
348 B
YAML
23 lines
348 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: test
|
|
run: yarn test
|
|
|
|
- name: package
|
|
run: yarn package
|