Skip to content

Commit

Permalink
Updates yarn and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Dec 7, 2023
1 parent 12b3f65 commit 53d26f3
Show file tree
Hide file tree
Showing 606 changed files with 15,151 additions and 15,713 deletions.
2 changes: 1 addition & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ignores: ["@yarnpkg/sdks", "depcheck", "prettier", "@yarnpkg/pnpify"]
ignores: ["@yarnpkg/sdks", "depcheck", "prettier"]
22 changes: 12 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- name: Build the typescript code
run: yarn build
- uses: actions/upload-artifact@main
Expand All @@ -22,24 +22,26 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x, 14.x]
node-version: [12.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test

run-depcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn pnpify depcheck
node-version: 18.x
- run: yarn
- run: yarn depcheck

run-pre-commits:
runs-on: ubuntu-latest
Expand All @@ -48,10 +50,10 @@ jobs:
with:
fetch-depth: 100 # need the history to do a changed files check below (source, origin)
- uses: actions/setup-python@v2
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- uses: pre-commit/[email protected]
with:
extra_args: --source ${{ github.event.pull_request.base.sha || 'HEAD~1' }} --origin ${{ github.event.pull_request.head.sha || 'HEAD' }}
Expand All @@ -69,7 +71,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '18.x'
- name: Configure NPM authentication
run: |
yarn config set npmAlwaysAuth true
Expand All @@ -90,7 +92,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '18.x'
- name: Configure Github Packages authentication
run: |
yarn config set npmAlwaysAuth true
Expand Down
Loading

0 comments on commit 53d26f3

Please sign in to comment.