feat: add logos for alheckz, amano, and apothecary #2076
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: Pull Request Package | |
on: | |
pull_request: | |
jobs: | |
package: | |
name: package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: nodeversion | |
run: echo "NODE=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
- name: Use Node.js ${{steps.nodeversion.outputs.NODE}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.nodeversion.outputs.NODE }} | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: true | |
- name: lint | |
run: pnpm lint | |
- name: Package website | |
run: pnpm package |