Skip to content

Commit

Permalink
revert lint dependency upgrades due to conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
alecmerdler committed May 7, 2024
1 parent c7c40af commit 9844b35
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/authzed-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: ./
- name: Run Yarn lint
- name: Run lint
run: CI=true yarn lint
working-directory: ./
publish-npm:
Expand All @@ -61,8 +62,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- run: npm test
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: ./
- run: yarn test
- uses: battila7/get-version-action@v2
- uses: JS-DevTools/npm-publish@v3
with:
Expand All @@ -86,17 +90,18 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: ./
- name: Run build
run: yarn build-js-client
working-directory: ./
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: ./js-dist
- name: Run Yarn tests
- name: Run tests
run: CI=true yarn only-run-tests
working-directory: ./js-dist
- uses: actions/upload-artifact@v4
Expand All @@ -118,7 +123,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: ./
- uses: battila7/get-version-action@v2
- uses: JS-DevTools/npm-publish@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"@protobuf-ts/plugin": "^2.9.4",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.57.0",
"grpc-tools": "^1.11.2",
"jasmine": "^5.1.0",
"ts-node": "^10.9.2",
Expand Down

0 comments on commit 9844b35

Please sign in to comment.