Skip to content

fix: update dependencies to address security vulnerabilities #4

fix: update dependencies to address security vulnerabilities

fix: update dependencies to address security vulnerabilities #4

Workflow file for this run

name: 'Lint'
on:
push:
branches:
- "main"
pull_request:
branches:
- 'main'
jobs:
lint:
name: 'Lint'
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout the current branch'
uses: 'actions/checkout@v4'
- name: 'Setup Node'
uses: 'actions/setup-node@v4'
with:
node-version: 20
- name: 'Install Node modules'
run: 'npm ci'
- name: 'Run lint'
run: 'npm run lint'