Skip to content

Commit

Permalink
Merge pull request #1 from ryanexus/path-prefix-2
Browse files Browse the repository at this point in the history
Add optional path prefix to client constructor
  • Loading branch information
jackkav authored Jan 21, 2025
2 parents a29faa2 + c7d8304 commit f806b5a
Show file tree
Hide file tree
Showing 8 changed files with 1,821 additions and 6,872 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: CI

on:
push:
branches:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node 12
uses: actions/setup-node@v2-beta
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '12'
node-version: 20
- name: Install packages
run: npm install
- name: Run test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2-beta
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 12.0.0
node-version: 20
- run: npm install
- run: npm run build
- uses: JS-DevTools/npm-publish@v1
Expand Down
Loading

0 comments on commit f806b5a

Please sign in to comment.