diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14670e0d..61d002b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: lint: name: lint runs-on: ubuntu-latest - if: github.repository == 'muxinc/mux-node-sdk' + steps: - uses: actions/checkout@v4 @@ -22,16 +22,13 @@ jobs: node-version: '18' - name: Install dependencies - run: | - yarn install + run: yarn install - name: Check types - run: | - yarn build + run: ./scripts/lint test: name: test runs-on: ubuntu-latest - if: github.repository == 'muxinc/mux-node-sdk' steps: - uses: actions/checkout@v4 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0943ba58..ec5fc768 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.5.2" + ".": "8.5.3" } diff --git a/.stats.yml b/.stats.yml index 0a5fc455..7be41063 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 95 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml diff --git a/package.json b/package.json index c04f7902..caa500af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mux/mux-node", - "version": "8.5.2", + "version": "8.5.3", "description": "The official TypeScript library for the Mux API", "author": "Mux ", "types": "dist/index.d.ts", diff --git a/scripts/format b/scripts/format new file mode 100755 index 00000000..d297e762 --- /dev/null +++ b/scripts/format @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -e + +cd "$(dirname "$0")/.." + +echo "==> Running eslint --fix" +./node_modules/.bin/eslint --fix --ext ts,js . diff --git a/scripts/lint b/scripts/lint index 4f05d660..6b0e5dc3 100755 --- a/scripts/lint +++ b/scripts/lint @@ -4,4 +4,5 @@ set -e cd "$(dirname "$0")/.." +echo "==> Running eslint" ./node_modules/.bin/eslint --ext ts,js . diff --git a/scripts/test b/scripts/test index b62a7ccc..2049e31b 100755 --- a/scripts/test +++ b/scripts/test @@ -52,6 +52,5 @@ else echo fi -# Run tests echo "==> Running tests" ./node_modules/.bin/jest "$@" diff --git a/src/version.ts b/src/version.ts index 03d93012..e7f13dc1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '8.5.2'; // x-release-please-version +export const VERSION = '8.5.3'; // x-release-please-version