2021-02-01 02:24:11 +00:00
|
|
|
name: Lint and test JS
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-lint-js:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Cancel Previous Runs
|
|
|
|
uses: styfle/cancel-workflow-action@0.7.0
|
|
|
|
with:
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node.js
|
2021-02-24 01:38:12 +00:00
|
|
|
uses: actions/setup-node@v2.1.5
|
2021-02-01 02:24:11 +00:00
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
- name: Lint and test the JS
|
|
|
|
run: bin/js_lint_test.sh
|
|
|
|
shell: bash
|