#78 - add 24 meetup data #262
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test & lint JavaScript codebase | |
on: | |
pull_request: | |
branches: [ "main" ] | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- '**.js' | |
- '**.vue' | |
- 'package.json' | |
- 'package.lock' | |
jobs: | |
test-and-lint-js: | |
name: Test & lint JavaScript codebase | |
timeout-minutes: 10 | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package.lock') }} | |
restore-keys: ${{ runner.os }}-npm-dependencies | |
- name: Set up node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Instal npm dependencies | |
run: npm install | |
- name: Run JS linter | |
run: npm run lint |