Skip to content

fix(deps): update dependency next-protected-auth to v2.0.387 #6085

fix(deps): update dependency next-protected-auth to v2.0.387

fix(deps): update dependency next-protected-auth to v2.0.387 #6085

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["18.x"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install PNPM
uses: pnpm/action-setup@v4.0.0
with:
version: 7.13.4
- name: Install deps and build (with cache)
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: NEXT_PUBLIC_API_URL="http://localhost:3000" NEXT_PUBLIC_GQL_URL="http://localhost:3000/graphql" pnpm build