Skip to content

WEB-58 Update types to pass build #82

WEB-58 Update types to pass build

WEB-58 Update types to pass build #82

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: src/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: src
- name: Lint
run: npm run lint
working-directory: src
- name: Build
run: npm run build
working-directory: src