Skip to content

Bump next from 13.4.2 to 14.2.21 #41

Bump next from 13.4.2 to 14.2.21

Bump next from 13.4.2 to 14.2.21 #41

Workflow file for this run

name: Test & Build Gamedoora-UI
on:
workflow_dispatch:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20.x
env:
NODE_ENV: development
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Install and copy env
run: |
npm install
env | grep "^(NEXT|GAMEDOORA)" | sed 's/\(.*\)=\(.*\)/\1="\2"/g' >> .env
- name: Run lint
run: |
npm run lint
- name: Run build
run: |
npm run build