Skip to content

Don't add yarn.lock to the generated zip file (#1519) #1

Don't add yarn.lock to the generated zip file (#1519)

Don't add yarn.lock to the generated zip file (#1519) #1

Workflow file for this run

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