Skip to content

fix: support int | str group ids #33

fix: support int | str group ids

fix: support int | str group ids #33

Workflow file for this run

name: ci
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
commitlint:
runs-on: ubuntu-22.04
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Test
run: docker build --target test .
release:
runs-on: ubuntu-22.04
needs: test
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install semantic-release
run: npm i [email protected] [email protected]
- name: Release
env:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release