Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Simplify mention regex as much as possible. #68

Simplify mention regex as much as possible.

Simplify mention regex as much as possible. #68

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Gnuxie <Gnuxie@protonmail.com>
#
# SPDX-License-Identifier: CC0-1.0
name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Specifically use node LTS.
uses: actions/setup-node@v4
with:
node-version: "18"
- run: npm ci
- run: npm run build
- run: npm run lint
unit:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Specifically use node LTS.
uses: actions/setup-node@v4
with:
node-version: "18"
- run: npm ci
- run: npm run build
- run: npm run test