Skip to content

Merge pull request #52 from CodeByBryant/copilot/create-releases-and-… #5

Merge pull request #52 from CodeByBryant/copilot/create-releases-and-…

Merge pull request #52 from CodeByBryant/copilot/create-releases-and-… #5

Workflow file for this run

# Continuous Integration
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run type checking
run: npm run typecheck
- name: Build web version
run: npm run build:web