Skip to content

Commit

Permalink
check1 (#75)
Browse files Browse the repository at this point in the history
* check1

* wip1

* wip2

* wip3

* wip4

* wip5

* cat wip

* wip6

* final

* branch added

* fix published type

* check tests

* tests1

* check2

* test3

* tier fix

* tier wip1

* wip1

* wip2

* check2

* delete the deletes on rbac

* without rbac at all

* without rebac at all

* without e2e tests

* without tests:e2e at all

* with all tests

* without finally

* fix conflicts

* rbac

* revert e2e

* one by one

* last check

* final
  • Loading branch information
EliMoshkovich authored Mar 31, 2024
1 parent 377d7c3 commit 4861e5c
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 1 deletion.
108 changes: 108 additions & 0 deletions .github/workflows/node_sdk_publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
name: Release permit Node SDK

on:
release:
types: [published]
env:
PROJECT_ID: 7f55831d77c642739bc17733ab0af138 #github actions project id (under 'Permit.io Tests' workspace)
ENV_NAME: node-sdk-ci

jobs:
publish_node_sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
token: ${{ secrets.NPM_TOKEN }}

- name: Set git user
run: |
git config --global user.email "[email protected]"
git config --global user.name "elimoshkovich"
- name: Install dependencies
run: |
rm -rf node_modules
yarn install
yarn run build
yarn docs ; git add docs/ ; git commit -m "update tsdoc"
- name: Install Docker
uses: docker-practice/actions-setup-docker@master

- name: Creation env ${{ env.ENV_NAME }} under 'Permit.io Tests' workspace
run: |
response=$(curl -X POST \
https://api.permit.io/v2/projects/${{ env.PROJECT_ID }}/envs \
-H 'Authorization: Bearer ${{ secrets.PROJECT_API_KEY }}' \
-H 'Content-Type: application/json' \
-d '{
"key": "${{ env.ENV_NAME }}",
"name": "${{ env.ENV_NAME }}"
}')
# Extract the new env id
echo "ENV_ID=$(echo "$response" | jq -r '.id')" >> $GITHUB_ENV
echo "New env ID: $ENV_ID"
- name: Fetch API_KEY of ${{ env.ENV_NAME }}
run: |
response=$(curl -X GET \
https://api.permit.io/v2/api-key/${{ env.PROJECT_ID }}/${{ env.ENV_ID }} \
-H 'Authorization: Bearer ${{ secrets.PROJECT_API_KEY }}')
# Extract the secret from the response which is the API_KEY of the new env
echo "ENV_API_KEY=$(echo "$response" | jq -r '.secret')" >> $GITHUB_ENV
echo "New env api key: $ENV_API_KEY"
- name: local PDP runnning
env:
PDP_API_KEY: ${{ env.ENV_API_KEY }}
PERMIT_API_KEY: ${{ env.ENV_API_KEY }}
PDP_DEBUG: true
run: docker run -d -p 7766:7000 permitio/pdp-v2:latest

- name: Run tests
env:
PDP_API_KEY: ${{ env.ENV_API_KEY }}
PERMIT_API_KEY: ${{ env.ENV_API_KEY }}
API_TIER: 'prod'
run: yarn test

- name: Delete env ${{ env.ENV_NAME }}
if: always()
run: |
curl -X DELETE \
https://api.permit.io/v2/projects/${{ env.PROJECT_ID }}/envs/${{ env.ENV_ID }} \
-H 'Authorization: Bearer ${{ secrets.PROJECT_API_KEY }}'
- name: Bump version at package.json
run: |
sed -i "s/\"version\": \".*\"/\"version\": \"${{ github.event.release.tag_name }}\"/" package.json
cat package.json
- name: Publish package to NPM
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Commit package.json changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "elimoshkovich"
git add package.json
git commit -m "bump package.json version to ${{ github.event.release.tag_name }}"
- name: Push changes to GitHub
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.TOKEN_GITHUB }}
branch: main
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s test:*",
"test:integration": "run-s build && ava --verbose src/**/endpoints/**",
"test:e2e": "run-s build && ava --verbose src/**/e2e/**",
"test:e2e:rbac": "run-s build && ava --verbose src/**/e2e/rbac.e2e.spec.ts",
"test:e2e:rebac": "run-s build && ava --verbose src/**/e2e/rebac.e2e.spec.ts",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
Expand Down

0 comments on commit 4861e5c

Please sign in to comment.