Skip to content

[Tech Debt] Update tests to be able to run against live staging/produ… #14

[Tech Debt] Update tests to be able to run against live staging/produ…

[Tech Debt] Update tests to be able to run against live staging/produ… #14

Workflow file for this run

on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: 'npm'
- name: Install node dependencies
run: npm ci --timing
- name: Lint javascript
run: npm run lint