Skip to content

Mention the submit button instead of /verify submit #578

Mention the submit button instead of /verify submit

Mention the submit button instead of /verify submit #578

Workflow file for this run

name: Lint
on: [pull_request, push]
jobs:
lint-and-build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Build
run: npm run build