Migrate from Travis to Github Actions (#1517)
This commit is contained in:
parent
56a8114f28
commit
d6ccb97e0b
4 changed files with 88 additions and 71 deletions
23
.github/workflows/lint-js.yml
vendored
Normal file
23
.github/workflows/lint-js.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: JS Code Linting
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
lint-js:
|
||||
name: Lint JS
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout the git repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
- name: npm install
|
||||
run: npm install
|
||||
- name: Lint JS
|
||||
run: npm run lint:js
|
Loading…
Add table
Add a link
Reference in a new issue