Skip to content

Commit

Permalink
Check integration script
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Sep 15, 2023
1 parent e29118d commit dd253cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,21 @@ jobs:
fetch-depth: 0
- name: Setup .yarnrc.yml
run: |
yarn config set npmAuthToken $NPM_TOKEN
yarn config set npmAuthToken $npmPublishToken
yarn config set npmAlwaysAuth true
echo //registry.npmjs.org/:_authToken=$NPM_TOKEN > ~/.npmrc
echo //registry.npmjs.org/:_authToken=$npmPublishToken > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
npmPublishToken: ${{secrets.NPM_PUBLISH_TOKEN}}
- name: Install
run: yarn install --immutable
- name: Test
run: yarn test
- name: Lint
run: yarn lint
# - name: Test
# run: |
# yarn build --fastBuild
# yarn test
# - name: Lint
# run: yarn lint
- name: Release
run: yarn release
env:
Expand All @@ -55,3 +59,4 @@ jobs:
EMAIL_ADDRESS: ${{secrets.EMAIL_ADDRESS}}
GIT_NAME: ${{secrets.GIT_NAME}}
npmAuthToken: ${{secrets.NPM_TOKEN}}
npmPublishToken: ${{secrets.NPM_PUBLISH_TOKEN}}
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"prepare": "husky install",
"dev": "vx dev",
"website:start": "yarn workspace website start",
"website:build": "yarn workspace website build",
"postinstall": "vx build --fastBuild"
"website:build": "yarn workspace website build"
},
"prettier": {
"arrowParens": "avoid",
Expand Down

0 comments on commit dd253cd

Please sign in to comment.