ci: π‘ add npm whoami step for debugging #616
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: main | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v2 | |
- name: β Setup pnpm@v8 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: β Setup Node@18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: π₯ Download deps | |
run: pnpm install | |
- name: π Build | |
run: pnpm build | |
- name: π Verify types | |
run: pnpm type-check | |
- name: π Verify format (`pnpm format` committed?) | |
run: pnpm format --check --no-write | |
- name: π΅οΈ Lint | |
run: pnpm lint | |
- name: π‘οΈ Test | |
run: pnpm test | |
- name: π Report bundle size | |
uses: andresz1/size-limit-action@v1 | |
continue-on-error: true | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
needs: validate | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'dotlottie/player-component' && github.event_name == 'push' }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
- name: β Setup pnpm@v8 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: β Setup Node@18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: π₯ Download deps | |
run: pnpm install | |
- name: π Build | |
run: pnpm build | |
- name: NPM Whoami (for debugging) | |
run: pnpm whoami | |
env: | |
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: π Release | |
uses: changesets/action@v1 | |
with: | |
commit: 'chore: π€ update versions' | |
title: 'chore: π€ update versions' | |
publish: pnpm release:publish | |
version: pnpm release:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: πPublish Playground | |
if: success() | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
publish_dir: ./apps/dotlottie-playground/dist |