Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
/ mc-dev Public archive

first commit

first commit #1

Workflow file for this run

name: Lint
description: Lint and build the project to check for errors.
on:
- pull_request
- push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run build
run: npm run build