Skip to content

Show using parameterized classes with JUnit 6 #10

Show using parameterized classes with JUnit 6

Show using parameterized classes with JUnit 6 #10

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/workflows/**'
- 'site/**'
# 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-${{ github.ref }}"
cancel-in-progress: false
jobs:
build-site:
name: Build site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
cache-dependency-path: site/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./site
- name: Build site
run: yarn build
working-directory: ./site
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: site/build
deploy:
name: Deploy to GitHub Pages
needs: build-site
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4