Skip to content

Bump @types/react-dom from 18.2.14 to 18.2.15 #163

Bump @types/react-dom from 18.2.14 to 18.2.15

Bump @types/react-dom from 18.2.14 to 18.2.15 #163

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build the application and upload the output as an artifact.
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: yarn
- name: Build with Next.js
run: yarn build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist/
# Deployment job.
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2