Skip to content

Commit

Permalink
build: replace yarn with npm
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalsadhu committed Oct 12, 2022
1 parent 23d59ff commit e793e20
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
uses: actions/checkout@v3
- name: Install Dependencies
run: |
yarn
npm install
- name: Build Packages
run: |
yarn build
npm run build
- name: Build Docs
run: |
yarn docs:build
npm run docs:build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install
- name: Build
run: yarn build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: npx semantic-release
- name: Eik login and publish
run: yarn eik:login -k $EIK_TOKEN && yarn eik:publish || true
run: npm run eik:login -k $EIK_TOKEN && npm run eik:publish || true
env:
EIK_TOKEN: ${{ secrets.EIK_TOKEN }}

0 comments on commit e793e20

Please sign in to comment.