Skip to content

Update package dependencies in package.json and package-lock.json, in… #10

Update package dependencies in package.json and package-lock.json, in…

Update package dependencies in package.json and package-lock.json, in… #10

Workflow file for this run

name: Test build
on:
push:
branches:
- dev
pull_request:
branches:
- main
- dev
jobs:
test-build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test build website
run: npm run build