chore(deps-dev): bump @babel/traverse from 7.22.8 to 7.23.2 #4677
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: Node CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [latest] | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- run: npm run build | |
- run: npm run lint | |
- run: npx playwright install --with-deps | |
- name: Build Storybook | |
run: npm run build-storybook --quiet | |
- name: Serve Storybook and run tests | |
run: | | |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"npx http-server packages/ui/storybook-static --port 6006 --silent" \ | |
"npx wait-on tcp:6006 && npm test" | |
- name: Codecov | |
uses: codecov/[email protected] | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
with: | |
fetch-depth: 0 # 👈 Required to retrieve git history | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
with: | |
token: ${{ secrets.github_token }} | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |