Merge pull request #22 from Evanlab02/release-please--branches--trunk #51
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: Component Checks | |
on: | |
pull_request: | |
branches: [trunk] | |
push: | |
branches: [trunk] | |
permissions: | |
contents: read | |
defaults: | |
run: | |
working-directory: ./packages/components | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.16.0' | |
cache: 'npm' | |
cache-dependency-path: ./packages/components/package-lock.json | |
- name: Setup | |
run: | | |
npm install | |
- name: Run tests | |
run: | | |
npm run test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.16.0' | |
cache: 'npm' | |
cache-dependency-path: ./packages/components/package-lock.json | |
- name: Setup | |
run: | | |
npm install | |
- name: Linting | |
run: | | |
npm run lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.16.0' | |
cache: 'npm' | |
cache-dependency-path: ./packages/components/package-lock.json | |
- name: Setup | |
run: | | |
npm install | |
- name: Build Lib | |
run: | | |
rm -rf index.tgz | |
npm run build | |
npm pack | |
mv *.tgz index.tgz | |
- name: Build Storybook | |
run: | | |
npm run storybook:build |