Skip to content

CI

CI #336

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build:
name: Build and Test
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test