Skip to content

chore(deps-dev): Bump @storybook/test from 8.0.0 to 8.1.1 in /site #178

chore(deps-dev): Bump @storybook/test from 8.0.0 to 8.1.1 in /site

chore(deps-dev): Bump @storybook/test from 8.0.0 to 8.1.1 in /site #178

Workflow file for this run

#
# Copyright (c) 2024 Elide Technologies, Inc.
#
# Licensed under the MIT license (the "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://opensource.org/license/mit/
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under the License.
#
name: PR
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
name: "Build & Test"
uses: ./.github/workflows/ci.build.yml
secrets: inherit # codecov bundle analysis
test:
name: "Build & Test"
uses: ./.github/workflows/ci.test.yml
secrets: inherit # codecov/sonar tokens
check-prettier:
name: "Checks"
uses: ./.github/workflows/check.prettier.yml
check-workflows:
name: "Checks"
uses: ./.github/workflows/check.workflows.yml
check-dependencies:
name: "Checks"
needs: [build]
uses: ./.github/workflows/check.dependency-review.yml
check-codeql:
name: "Checks"
needs: [build]
uses: ./.github/workflows/check.codeql.yml
secrets: inherit
permissions:
actions: read
contents: read
security-events: write
check-chromatic:
name: "Checks"
uses: ./.github/workflows/check.chromatic.yml
secrets: inherit
deploy:
name: "Deploy"
if: false
needs: [build, test, check-prettier, check-workflows]
uses: ./.github/workflows/ci.deploy.yml
secrets: inherit