mirror of
https://github.com/quantum5/totp.git
synced 2025-04-24 13:41:58 -04:00
20 lines
516 B
YAML
20 lines
516 B
YAML
name: Build and test
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x, 20.x, 22.x]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install dependencies
|
|
run: npm ci --include=dev
|
|
- name: Lint
|
|
run: npm run lint
|
|
- name: Build
|
|
run: npm run build |