Skip to content

Commit

Permalink
updated node and used yarn in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideCanton committed Oct 13, 2023
1 parent 598d7cd commit 90bb0d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- uses: actions/setup-node@v2
name: Setup node
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

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

- run: npm publish --access public --verbose
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
- uses: actions/setup-node@v2
name: Setup node
with:
node-version: '14.x'
node-version: '18.x'

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

- run: npm run build
- run: yarn build
name: Build code

- run: npm run test
- run: yarn test
name: Run tests

- run: npm run docs
- run: yarn docs
name: Build docs

0 comments on commit 90bb0d7

Please sign in to comment.