Skip to content

Commit

Permalink
Merge 0939ad3 into 47312f0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 10, 2021
2 parents 47312f0 + 0939ad3 commit 0f17790
Show file tree
Hide file tree
Showing 3 changed files with 382 additions and 361 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,25 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true

lint:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x

- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-14.x-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-14.x-
- run: npm install

- run: npm run lint
Loading

0 comments on commit 0f17790

Please sign in to comment.