feat: improve parse options & file.message and fileData type namings and export #553
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: Release | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: validate | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['18'] | |
timeout-minutes: 20 | |
steps: | |
- name: ⬇ Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: ⎔ Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: ⎔ Setup Node.js ${{ matrix.node-version }} for Github Packages | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://npm.pkg.github.com/' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets. NPM_TOKEN }} | |
- name: 📥 Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🏗 Build | |
run: pnpm clean && pnpm build | |
- name: 🔍 Verify types | |
run: pnpm type-check | |
- name: 💅 Verify format | |
run: pnpm format --check --no-write | |
- name: 🕵️ Lint | |
run: pnpm lint:prod | |
- name: 🛡️ Test | |
run: pnpm test | |
- name: 📏 Report bundle size | |
uses: andresz1/size-limit-action@v1 | |
continue-on-error: true | |
with: | |
github_token: ${{ secrets.GPR_TOKEN }} | |
release: | |
name: release | |
needs: validate | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'LottieFiles/relottie' && github.event_name == 'push' }} | |
strategy: | |
matrix: | |
node-version: ['18'] | |
timeout-minutes: 20 | |
steps: | |
- name: ⬇ Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: ⎔ Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: ⎔ Setup Node.js ${{ matrix.node-version }} for NPM | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: ⎔ Setup .npmrc (NPM) | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMJS_TOKEN }}" >> ~/.npmrc | |
- name: 📥 Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🚀 Release to NPM | |
uses: changesets/action@v1 | |
id: changesets | |
with: | |
commit: 'chore: 🤖 update versions' | |
title: 'chore: 🤖 update versions' | |
publish: pnpm release:publish | |
version: pnpm release:version | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GPR_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- name: 🚀 Release to Github Packages | |
if: steps.changesets.outputs.published == 'true' | |
run: rm -f "$HOME/.npmrc" && pnpm install && npm publish --registry=https://npm.pkg.github.com/ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets. NPM_TOKEN }} |