Skip to content

Merge pull request #13 from joemcgill/fix/workflow-with-i10n #15

Merge pull request #13 from joemcgill/fix/workflow-with-i10n

Merge pull request #13 from joemcgill/fix/workflow-with-i10n #15

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
jobs:
lint-js:
name: JS Lints
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint JS
run: npm run lint