Skip to content

Merge pull request #23 from CloudNStoyan/main #26

Merge pull request #23 from CloudNStoyan/main

Merge pull request #23 from CloudNStoyan/main #26

Workflow file for this run

name: Build
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run format:check --if-present
- run: npm run lint --if-present
- run: npm run build --if-present
- run: npm run test --if-present