Skip to content

Merge pull request #124 from C4illin/dependabot/npm_and_yarn/biomejs/… #23

Merge pull request #124 from C4illin/dependabot/npm_and_yarn/biomejs/…

Merge pull request #124 from C4illin/dependabot/npm_and_yarn/biomejs/… #23

Workflow file for this run

name: Check Lint
permissions:
contents: read
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up node.js
uses: actions/setup-node@v6
with:
node-version: "16"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run check
run: npm run check