Skip to content

fix(deps): update all non-major dependencies #1797

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #1797

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
push:
branches:
- main
concurrency:
group: pr-checks-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
name: Lint, Prettier & Jest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn
- run: yarn lint:all
- run: yarn prettier:check
- run: yarn test:ci
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Frontend Unit Test Results
path: "!(node_modules)/**/reports/jest-junit.xml"
reporter: jest-junit
chromatic:
needs: lint
runs-on: ubuntu-latest
name: Deploy Chromatic
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn
- run: yarn prebuild-storybook
working-directory: packages/skylarktv
- name: Publish to Chromatic
uses: chromaui/action@v11
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/skylarktv
autoAcceptChanges: main