[Snyk] Upgrade eslint-config-next from 13.1.6 to 13.5.6 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Landing page 🏗️ | |
on: | |
pull_request: | |
branches: ["develop"] | |
paths: [ | |
"frontend/occupi/**", | |
".github/workflows/build-landing-page.yml" | |
] | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: frontend/occupi | |
jobs: | |
# Build job | |
build-test: | |
name: 🏗️ Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v4 | |
- name: 🏗 Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: 📦 Install dependencies with node | |
run: npm install | |
- name: 🚀 Build with Next.js | |
run: npm run build |