[LW-9793] - chore(extension): bump cardano-js-sdk, enable trezor #300
Workflow file for this run
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: Lace Staking Chromatic | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- packages/staking/** | |
push: | |
paths: | |
- packages/staking/** | |
branches: | |
- main | |
jobs: | |
chromatic-deployment: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: π§° Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: 'yarn' | |
- name: π Cache | |
uses: actions/cache@v4 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ~/.yarn/berry/cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: π½ Install dependencies | |
run: yarn --immutable --inline-builds | |
- name: π§βπ¬ Build | |
run: yarn workspaces foreach -Rpt -v --from '@lace/staking' run build | |
- name: π§βπ¬ Linter | |
working-directory: ./packages/staking | |
run: yarn lint | |
- name: π©βπ¬ Tests | |
working-directory: ./packages/staking | |
run: yarn test-storybook:ci | |
- name: π Publish to Chromatic | |
if: github.ref != 'refs/heads/main' | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_LACE_STAKING_TOKEN }} | |
workingDir: ./packages/staking | |
buildScriptName: build-storybook | |
onlyChanged: true | |
- name: π Publish to Chromatic and auto accept changes | |
if: github.ref == 'refs/heads/main' | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_LACE_STAKING_TOKEN }} | |
autoAcceptChanges: true | |
workingDir: ./packages/staking | |
onlyChanged: true |