feat | Implement UpdatableAdapter on adapter #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
- name: Install Dependency | |
run: yarn install | |
- name: Run Lint | |
run: yarn run lint | |
- name: Run Fix | |
run: yarn run fix | |
coverage: | |
needs: [lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup MySQL | |
uses: mirromutth/[email protected] | |
with: | |
mysql database: casbin | |
mysql root password: password | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ^18 | |
- name: Install Dependency | |
run: yarn install | |
- name: Run Coverage | |
run: yarn run coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
test: | |
needs: [lint] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [^16, ^18] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup MySQL | |
uses: mirromutth/[email protected] | |
with: | |
mysql database: casbin | |
mysql root password: password | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Dependency | |
run: yarn install | |
- name: Run Unit test | |
run: yarn run test | |
semantic-release: | |
needs: [lint, test, coverage] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ^18 | |
- name: Run semantic-release | |
if: github.repository == 'node-casbin/typeorm-adapter' && github.event_name == 'push' | |
run: | | |
yarn install | |
yarn run prepublish | |
yarn run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |