Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add ci
  • Loading branch information
wangsongc committed Jan 29, 2021
commit 6a130e1e846a1b2cb8869e52ce9d312017b0cd2e
21 changes: 21 additions & 0 deletions .github/workflows/gha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches: [ test-framework ]
pull_request:
branches: [ test-framework ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependence
run: |
npm i
- name: run eslint
run: |
npm run lint
- name: run test
run: |
npm run test