Skip to content

chore(deps): bump the tauri-apps group with 2 updates (#1932) #4968

chore(deps): bump the tauri-apps group with 2 updates (#1932)

chore(deps): bump the tauri-apps group with 2 updates (#1932) #4968

Workflow file for this run

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@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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/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:
token: ${{ secrets.github_token }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}