ci: fix documentation deployment #20
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository ⏬ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: Set up Node.js 💿 | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
cache: pnpm | |
- name: Install dependencies 💤 | |
run: pnpm install | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v4 | |
id: nx-sha | |
with: | |
main-branch-name: master | |
- name: "Get affected projects" | |
id: affected-projects | |
run: echo "affected='$(npx nx show projects --sep=' ')'" >> "$GITHUB_OUTPUT" | |
- run: echo ${{hashFiles('packages/docs/dist/index.html')}} | |
# - name: Check formatting 🎨 | |
# run: npx nx format:check | |
# - name: Lint and build projects 👷♀️ | |
# run: npx nx affected -t lint build publint |