Skip to content

Bump next from 15.3.3 to 15.5.2 #3727

Bump next from 15.3.3 to 15.5.2

Bump next from 15.3.3 to 15.5.2 #3727

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: test
SQLITE: test.db
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# Installs packages
- run: npm ci
# Makes sure the code is formatted correctly
- run: npm run pretty
# Runs tests
- run: npm run test:cli
# Runs eslint
- run: npm run lint
# Builds the project
- run: npm run build
# Checks the db types
- run: npm run dbtypes:check