chore(deps): update dependency @types/node to v20.17.6 #2198
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 workflow | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, edited] | |
jobs: | |
build: | |
name: Build and test all packages | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
if: ${{ github.event.action != 'edited' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.4.0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Code lint | |
run: pnpm lint | |
- name: Test | |
run: pnpm test:ci | |
# - name: Test Storybook | |
# run: pnpm test:storybook:ci | |
- name: Publish to Chromatic | |
uses: chromaui/action@latest | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
buildScriptName: build:storybook:ci | |
onlyChanged: true | |
exitOnceUploaded: true | |
exitZeroOnChanges: true | |
semantic-pr: | |
name: Validate PR title for semantic versioning | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |