Skip to content

Bump @types/node from 18.15.1 to 20.8.3 #1048

Bump @types/node from 18.15.1 to 20.8.3

Bump @types/node from 18.15.1 to 20.8.3 #1048

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main, develop]
workflow_call:
jobs:
build:
name: Builds the next.js app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install npm dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
# continue-on-error: true
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: nextjs-build
path: |
.next/