fix(deps): update all non-major dependencies #1784
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: 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 |