Skip to content

Alpha version of ELXMOJ #33

Alpha version of ELXMOJ

Alpha version of ELXMOJ #33

Workflow file for this run

name: Code Check
on:
push:
branches:
- "**"
pull_request:
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Run lint and syntax check
run: npm run check