Skip to content

Commit

Permalink
chore: Improvements
Browse files Browse the repository at this point in the history
Signed-off-by: Oğuzhan Durgun <[email protected]>
  • Loading branch information
oguzhand95 committed Oct 10, 2024
1 parent 9eb7efc commit 73b144d
Show file tree
Hide file tree
Showing 21 changed files with 26,596 additions and 12,835 deletions.
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

55 changes: 0 additions & 55 deletions .eslintrc.json

This file was deleted.

8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@ version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
labels:
- 'area/ci'
- 'bots'
- 'kind/chore'
schedule:
interval: 'monthly'

- package-ecosystem: 'github-actions'
directory: '/'
labels:
- 'area/ci'
- 'bots'
- 'kind/chore'
schedule:
interval: 'monthly'
77 changes: 23 additions & 54 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,70 +6,29 @@ on:
- main

jobs:
buildtest:
name: Build and Unit Test
build-test-check-and-use:
name: Build, Test, Check and Use
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Set Node.js 20
uses: actions/setup-node@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
node-version: 20.x

- name: Print Node.js and npm version
run: |
node --version
npm --version
- name: Set up pnpm
uses: pnpm/action-setup@v3

- run: |
npm install
- run: |
npm run all
use:
name: Use
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Node.js 20
- name: Set up Node.js
uses: actions/setup-node@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
node-version: 20.x

- name: Print Node.js and npm version
run: |
node --version
npm --version
- uses: cerbos/cerbos-setup-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
version: 'latest'

- uses: ./

checkdist:
name: Check dist/index.js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Node.js 20
uses: actions/setup-node@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
node-version: 20.x
node-version-file: '.node-version'

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: |
pnpm install --frozen-lockfile
- name: Rebuild the dist/ directory
run: npm run build
- name: Run all
run: |
npm run all
- name: Compare the expected and actual dist/ directories
run: |
Expand All @@ -79,3 +38,13 @@ jobs:
exit 1
fi
id: diff

- uses: cerbos/cerbos-setup-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
version: 'latest'

- name: Use action
uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.vscode
.idea

# Dependency directory
node_modules

Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.18.0
8 changes: 0 additions & 8 deletions BUILD.md

This file was deleted.

37 changes: 30 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# Cerbos Compile Action

A GitHub action to validate Cerbos policies using the compiler and run policy tests if there are any.
A GitHub action to validate Cerbos policies using the compiler and run policy tests if there are any.

Cerbos helps you super-charge your authorization implementation by writing context-aware access control policies for your application resources. Find out more about Cerbos using the following resources:

* [Cerbos website](https://cerbos.dev)
* [Cerbos documentation](https://docs.cerbos.dev)
* [Cerbos GitHub repository](https://github.com/cerbos/cerbos)
* [Cerbos Slack community](http://go.cerbos.io/slack)
- [Cerbos website](https://cerbos.dev)
- [Cerbos documentation](https://docs.cerbos.dev)
- [Cerbos GitHub repository](https://github.com/cerbos/cerbos)
- [Cerbos Slack community](http://go.cerbos.io/slack)

## Usage

Use the [cerbos-setup-action](https://github.com/cerbos/cerbos-setup-action) to install Cerbos binaries. Then use this action to validate and test your Cerbos policies. See the [documentation](https://docs.cerbos.dev/cerbos/latest/policies/compile.html) for more information about how to compile policies and author policy tests.

Use the [cerbos-setup-action](https://github.com/cerbos/cerbos-setup-action) to install Cerbos binaries. Then use this action to validate and test your Cerbos policies. See the [documentation](https://docs.cerbos.dev/cerbos/latest/policies/compile.html) for more information about how to compile policies and author policy tests.

```yaml
- uses: actions/checkout@v2
Expand All @@ -25,3 +24,27 @@ Use the [cerbos-setup-action](https://github.com/cerbos/cerbos-setup-action) to
with:
policyDir: policies
```
## Development
### Prerequisites
You'll need to install
- Node.js, matching the version specified in our [.node-version](../.node-version) file
- A version manager that supports this file is recommended, for example [n](https://github.com/tj/n#readme).
Note that [nvm](https://github.com/nvm-sh/nvm) [does not](https://github.com/nvm-sh/nvm/issues/794).
- pnpm, matching the version specified in our [package.json](./package.json) file
- After installing Node.js, you can enable [Corepack](https://nodejs.org/api/corepack.html) to transparently install the correct `pnpm` version:
```console
$ corepack enable
```

### Build

```
pnpm run all
```
5 changes: 0 additions & 5 deletions __tests__/main.test.ts

This file was deleted.

Loading

0 comments on commit 73b144d

Please sign in to comment.