Skip to content

Commit

Permalink
fix: set proper registry
Browse files Browse the repository at this point in the history
  • Loading branch information
jung-han committed Sep 16, 2024
1 parent 7baf9ad commit 0101b4c
Show file tree
Hide file tree
Showing 4 changed files with 2,063 additions and 877 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.9.0
- name: Install dependencies
run: npm i
run: npm ci
- name: Publish to Chromatic
uses: chromaui/action@v1
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} # https://www.chromatic.com/docs/github-actions/
onlyChanged: true # https://www.chromatic.com/docs/turbosnap/#turbosnap
6 changes: 3 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.9.0
- name: Install dependencies
run: npm i
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
build: npm run build
start: npm run dev
4 changes: 2 additions & 2 deletions .github/workflows/vitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.9.0
- name: Install dependencies
run: npm i
run: npm ci
- name: run vitest
run: npm run test
Loading

0 comments on commit 0101b4c

Please sign in to comment.