Skip to content

Commit

Permalink
Try removing CascLib dep before npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbl committed Jul 27, 2024
1 parent 5364a00 commit 1af17ae
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ jobs:
node-version: 16
architecture: 'x64'

- name: Install Yarn
run: npm install -g yarn
# GitHub dependencies don't work in GitHub Action workflows...
- name: Remove CascLib dependency
run: npm remove CascLib

- name: Install dependencies
run: yarn install
run: npm install

- name: Build package
run: yarn run package
run: npm run package

- name: Delete release
uses: actions/github-script@v6
Expand Down Expand Up @@ -130,7 +131,7 @@ jobs:
preRelease: false

- name: Generate documentation
run: yarn run docs
run: npm run docs

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit 1af17ae

Please sign in to comment.