Skip to content

build(deps): bump @types/node from 22.18.12 to 24.9.1 #92

build(deps): bump @types/node from 22.18.12 to 24.9.1

build(deps): bump @types/node from 22.18.12 to 24.9.1 #92

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- version*
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: CI-node
env:
PUBLIC_URL: "http://localhost:3000"
OPTION_ACCELERATE: "no_use"
CLOUDFLARE_API_KEY: ""
DATABASE_URL: ${{ secrets.DATABASE_URL }}
DIRECT_URL: ${{ secrets.DATABASE_URL }}
run: |
npm install
npm run build
npm run lint
npm run check
- name: CI-cf
env:
PUBLIC_URL: "http://localhost:3000"
OPTION_ACCELERATE: "none"
CLOUDFLARE_API_KEY: ""
DATABASE_URL: ${{ secrets.DATABASE_URL }}
DIRECT_URL: ${{ secrets.DATABASE_URL }}
run: |
npm install
npm run build:cf
npm run lint
npm run check