Skip to content

Commit

Permalink
ci(actions): update action scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dysfunc committed Nov 27, 2023
1 parent f30e006 commit e251f18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn install:docs
- run: yarn test:integration
- run: npm i
- run: npm run test:integration
- uses: actions/upload-artifact@v2
if: failure()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn test
- run: npm i
- run: npm test
- uses: actions/upload-artifact@v2
if: failure()
with:
Expand Down

0 comments on commit e251f18

Please sign in to comment.