Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade gitly deps #36

Merged
merged 25 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7a7bf03
chore: Update npm dependencies to latest versions
May 12, 2024
daa9c04
chore: Update type imports in GitlyOptions interface
May 12, 2024
8f9bee1
chore: Update type imports and dependencies
May 12, 2024
1338cf0
chore: Update type imports and dependencies
May 12, 2024
512f5c8
chore: Update type imports and dependencies
May 12, 2024
c4b0484
chore: Update type imports and dependencies
May 12, 2024
46c20c4
chore: Update type imports and dependencies in exists.ts
May 12, 2024
4c2b888
chore: Update fs and path imports in extract.ts
May 12, 2024
4ee4e7c
chore: Update fetch.ts imports and types
May 12, 2024
57db1b8
chore: Update type imports and dependencies in gitly.ts
May 12, 2024
7520a09
chore: Update dns import in offline.ts
May 12, 2024
8dc6246
chore: Update URL import in parse.ts
May 12, 2024
1996aeb
chore: Update fs and path imports to use node:fs and node:path in wri…
May 12, 2024
d622372
chore: Update clone.spec.ts to use 'iwatakeshi/gitly' repository for …
May 12, 2024
f875379
chore: Update fs and path imports to use node:fs and node:path in dow…
May 12, 2024
a4768b0
chore: Update fs and path imports to use node:fs and node:path in exi…
May 12, 2024
77ab6cc
chore: Update fs and path imports to use node:fs and node:path in ext…
May 12, 2024
b28e2c3
chore: Update fs and path imports to use node:fs and node:path in git…
May 12, 2024
55d7c21
chore: Update type imports in parse.spec.ts
May 12, 2024
8e49f1e
chore: Update node version requirement to >=15.x in package.json
May 12, 2024
5269311
chore: Update node version requirement to include 18.x and 20.x in pa…
May 12, 2024
c9bc5c1
chore: Update node version requirement to include 20.x in package.json
May 12, 2024
0c18844
chore: Update npm dependency to latest stable version
May 12, 2024
37fd37a
Merge remote-tracking branch 'origin/master' into chore/upgrade-gitly
May 12, 2024
1298dad
chore: Update npm dependency to latest stable version
May 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,23 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [15.x]
node: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node: ${{ matrix.node }}
- name: Setup yarn
run: npm i -g yarn

- name: Install
run: yarn install

- name: Lint
run: yarn lint
run: npm install

- name: Test
run: yarn test
run: npm test

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

env:
CI: true
Expand Down
Loading
Loading