Skip to content

fix: support int | str group ids #126

fix: support int | str group ids

fix: support int | str group ids #126

Workflow file for this run

name: ci
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: commitlint
uses: wagoid/commitlint-github-action@v5
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: docker build -t nuvs-test --target test . && docker run nuvs-test
release:
runs-on: ubuntu-22.04
needs: [test, commitlint]
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install semantic-release
run: npm i semantic-release@v18.0.0 conventional-changelog-conventionalcommits@4.6.1
- name: Release
env:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release