Skip to content

Update all dependencies to latest versions and modernize GitHub Actio… #33

Update all dependencies to latest versions and modernize GitHub Actio…

Update all dependencies to latest versions and modernize GitHub Actio… #33

Workflow file for this run

name: Run Checks
on:
push:
branches:
- main
pull_request:
jobs:
build_lint:
runs-on: ubuntu-latest
name: Build & Lint
steps:
- name: Fetch Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build