Skip to content

Bump serve-static and express #46

Bump serve-static and express

Bump serve-static and express #46

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Run formatter
run: npm run format
- name: Run linter
run: npm run lint
- name: Build
run: npm run build