element-plus/.github/workflows/yarn.js.yml
zazzaz f15d61ddbc
fix: fix timepicker keyevent bug (#1151)
* fix: fix timepicker keyevent bug

fix #904

* chore: update

* chore: update

* chore: update
2020-12-31 11:12:52 +08:00

31 lines
609 B
YAML

name: CI
on: pull_request
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install dependencies
run: yarn bootstrap
- name: Lint
run: yarn lint
- name: Test
run: yarn test
dependabot:
needs:
- build
runs-on: ubuntu-latest
steps:
- name: auto-merge
uses: ridedott/dependabot-auto-merge-action@master
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}