mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 17:49:16 +08:00
ee0d544c24
* chore: tslint * chore: workflow lint Co-authored-by: Amour1688 <lcz_1996@foxmail.com>
20 lines
283 B
YAML
20 lines
283 B
YAML
name: test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: install
|
|
run: yarn install
|
|
|
|
- name: lint
|
|
run: yarn lint
|
|
|
|
- name: test
|
|
run: yarn test
|