chore(deps): update pnpm to v8.9.2 #32
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: "Create & publish documentation" | |
on: | |
pull_request: | |
branches: [main, "lens-v2"] | |
types: | |
- closed | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build | |
- run: pnpm lint | |
- name: Run tests | |
run: pnpm test | |
env: | |
SDK_GATED_TEST_PK: ${{secrets.SDK_GATED_TEST_PK}} | |
SDK_GATED_TEST_PROFILE_ID: ${{secrets.SDK_GATED_TEST_PROFILE_ID}} | |
SDK_GATED_TEST_PUBLICATION_ID: ${{secrets.SDK_GATED_TEST_PUBLICATION_ID}} | |
TESTING_ENV_URL: ${{secrets.TESTING_ENV_URL}} | |
TESTING_HEADER_KEY: ${{secrets.TESTING_HEADER_KEY}} | |
TESTING_HEADER_VALUE: ${{secrets.TESTING_HEADER_VALUE}} | |
- run: pnpm lint:examples | |
docs: | |
if: github.event.pull_request.merged == true | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup pnpm for docs | |
uses: pnpm/[email protected] | |
- name: Use Node.js for docs | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm typedoc | |
- name: Deploy documentation | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs |