Fixed an issue where post_config could not modify the core data struc… #65
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: Test deployment | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/website.yml" | |
- ".github/workflows/deploy-website.yml" | |
- "docs/**" | |
push: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./docs | |
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 dependencies | |
run: yarn install --frozen-lockfile | |
- name: Test build website | |
run: yarn build |