Kubernetes channels for deployments, pods and services #105
Workflow file for this run
This file contains hidden or 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: Test docs deployment | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'website/**' | |
- 'docs/**' | |
- 'CONTRIBUTING.md' | |
jobs: | |
test-deploy: | |
name: Test deployment | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 10 | |
run_install: false | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
working-directory: website | |
- name: Build website | |
run: pnpm run build | |
working-directory: website | |