-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cda4007
commit 0c5be0d
Showing
5 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [14.x] | ||
node-version: [20.x] | ||
|
||
steps: | ||
- name: Checkout repository | ||
|
@@ -24,15 +24,17 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- uses: CultureHQ/[email protected] | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
|
||
- run: yarn | ||
- run: pnpm | ||
- run: node ./scripts/getStoriesList.js | ||
- run: yarn eslint . | ||
- run: yarn flow | ||
- run: yarn jest | ||
- run: yarn build | ||
- run: yarn website:build | ||
- run: pnpm eslint . | ||
- run: pnpm flow | ||
- run: pnpm jest | ||
- run: pnpm build | ||
- run: pnpm website:build | ||
|
||
- name: Install Surge | ||
run: npm install -g surge | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [14.x] | ||
node-version: [20.x] | ||
|
||
steps: | ||
- name: Checkout repository | ||
|
@@ -24,12 +24,14 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- uses: CultureHQ/[email protected] | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
|
||
- run: yarn | ||
- run: pnpm | ||
- run: node ./scripts/getStoriesList.js | ||
- run: yarn eslint . | ||
- run: yarn flow | ||
- run: yarn jest | ||
- run: yarn build | ||
- run: yarn website:build | ||
- run: pnpm eslint . | ||
- run: pnpm flow | ||
- run: pnpm jest | ||
- run: pnpm build | ||
- run: pnpm website:build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,6 @@ dangerfile.js | |
Dockerfile* | ||
GOVERNANCE.md | ||
jest.config.js | ||
pnpm-lock.yaml | ||
yarn.lock | ||
yarn-error.log |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,7 @@ npm i bzc-ui | |
// with yarn | ||
yarn add bzc-ui | ||
// with pnpm | ||
pnpm add bzc-ui | ||
``` |