💄 Add chart by forking lib that was not TS compliant #98
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: Build Design System package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@ZeroGachis' | |
# Skip post-install scripts here, as a malicious | |
# script could steal GITHUB_TOKEN. | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# `npm rebuild` will run all those post-install scripts for us. | |
- name: Rebuild & Prepare dependencies | |
run: npm rebuild && npm run prepare --if-present | |
- name: Update package version | |
uses: mingjun97/file-regex-replace@v1 | |
with: | |
regex: '"version": "([0-9.]*)"' | |
replacement: '"version": "${{ github.ref_name }}"' | |
include: 'package.json' | |
- name: Compile | |
run: npm run tsc | |
- name: Publish | |
if: startsWith(github.ref, 'refs/tags/') | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |