Skip to content

Update GitHub Action Versions #184

Update GitHub Action Versions

Update GitHub Action Versions #184

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.2
- name: Install Dependencies
run: npm i
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Tests
run: npm run test:ci
- name: Run Tests again
run: npm run test:ci
- name: Upload storybook to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run Build
run: npm run build