build: Update to Next 13 #637
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: Deploy staging environment | |
on: | |
pull_request: | |
branches: [develop, main, master, deploy] | |
types: [opened, synchronize, reopened] | |
jobs: | |
preview: | |
runs-on: ubuntu-latest | |
environment: staging | |
strategy: | |
matrix: | |
node-version: ["18.12.0"] | |
steps: | |
- name: ☁ Checkout code | |
uses: actions/checkout@v2 | |
- name: 📬 Caching | |
uses: actions/cache@v2 | |
with: | |
path: | | |
**/node_modules | |
${{ github.workspace }}/.next/cache | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} | |
- name: 🟩 Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 🧰 Install dependencies | |
run: npm ci | |
- name: 🚀 Build & Deploy to Netlify | |
id: deploy-netlify | |
run: npm run preview | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
- name: "Get Netlify URL" | |
uses: voorhoede/get-netlify-url@v2 | |
id: netlify-url | |
with: | |
site-name: seium | |
- name: 💬 Netlify Preview URL comment | |
uses: unsplash/comment-on-pr@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OUTPUT: "This pull request is being automatically deployed to Netlify.\n\n✅ Preview: ${{ steps.netlify-url.outputs.url }}" | |
with: | |
msg: ${{ env.OUTPUT }} | |
check_for_duplicate_msg: true |