chore(deps): update dependency tailwindcss to v3.4.14 #357
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
# https://github.com/reg-viz/reg-suit | |
name: Visual Regression Test | |
on: | |
push: | |
paths: | |
- .github/** | |
- client/** | |
- dev | |
env: | |
REG_NOTICE_CLIENT_ID: ${{ secrets.REG_NOTICE_CLIENT_ID }} | |
jobs: | |
build: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
defaults: | |
run: | |
working-directory: client | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install | |
# https://azujuuuuuun.hatenablog.com/entry/2022/09/03/225811 | |
# https://cloud.google.com/blog/ja/products/identity-security/enabling-keyless-authentication-from-github-actions | |
- id: "auth" | |
name: "Authenticate to Google Cloud" | |
uses: "google-github-actions/[email protected]" | |
with: | |
credentials_json: "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}" | |
# - name: Authenticate to Google Cloud | |
# env: | |
# GOOGLE_APPLICATION_CREDENTIALS: credentials_json.json | |
# run: | | |
# echo -n '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}' > credentials_json.json | |
- name: workaround for detached HEAD | |
run: | | |
git checkout ${GITHUB_REF#refs/heads/} || git checkout -b ${GITHUB_REF#refs/heads/} && git pull | |
# - name: run storybook generate | |
# run: pnpm build-storybook | |
- name: run storycap | |
run: pnpm storycap | |
- name: run reg-suit | |
run: | | |
pnpm vrt |