Skip to content

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Build static content to Pages
on:
# Runs on pushes targeting the default branch
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
test-case:
name: test-job
environment:
name: NODE_VERSION
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
path: .

Check failure on line 32 in .github/workflows/render-test.yml

View workflow run for this annotation

GitHub Actions / Build static content to Pages

Invalid workflow file

The workflow is not valid. .github/workflows/render-test.yml (Line: 32, Col: 9): Unexpected value 'path'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install
- name: Build website
run: yarn build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build