chore(deps): bump actions/checkout from 3 to 4 #4988
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 | |
paths: | |
- "**.json" | |
- "**.ts" | |
- "**.tsx" | |
jobs: | |
build: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- run: npm ci | |
- 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: compressed-size-action | |
uses: preactjs/[email protected] | |
with: | |
pattern: "./packages/ui/lib/**/*.{js,css,html,json}" | |
exclude: "{**/*.map,**/node_modules/**}" | |
- uses: codecov/codecov-action@v3 | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@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@v10 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |