Skip to content

feat: Update to latest node-casbin version and improve API support #61

feat: Update to latest node-casbin version and improve API support

feat: Update to latest node-casbin version and improve API support #61

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^16, ^18, ^20]
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn typecheck
- run: yarn lint
- run: yarn style
- run: yarn test
- run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.node-version }}
parallel: true
report:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
release:
needs: report
runs-on: ubuntu-latest
if: github.repository == 'node-casbin/nest-authz' && github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ^20
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}