Skip to content

Commit

Permalink
[CI] Switch from Hound to GAction
Browse files Browse the repository at this point in the history
  • Loading branch information
StaloneLab committed Feb 14, 2021
1 parent a0bc32e commit 8311995
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,28 @@ on:
pull_request:
branches: [master]

env:
NODE_VERSION: "14"

jobs:
lint:
name: Check linting problems
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install eslint
run: npm install -g eslint

- name: Run linter
run: eslint .

unit-testing:
name: Run unit testing
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8311995

Please sign in to comment.