add blurb about contributing to landing page #202
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
on: [pull_request] | |
name: PR preview | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
name: Generate PR preview | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Enable Corepack shims | |
run: corepack enable | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build the project | |
run: pnpm build | |
- name: Upload HTML artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: website-html | |
path: build | |
retention-days: 1 | |