feat: add monorepo support #504
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: Test | |
on : # rebuild any PRs and main branch changes | |
push : | |
branches: | |
- master | |
pull_request : | |
workflow_call: | |
jobs: | |
build : # make sure build/ci work properly | |
name : Build | |
runs-on: ubuntu-latest | |
steps : | |
- uses: actions/checkout@v4 | |
- name: Use PNPM | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 10 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
cache : pnpm | |
node-version: 20 | |
- name: Install dependencies | |
run : pnpm i | |
- name: Build using TypeScript | |
run : pnpm build | |
- name: Package using ncc | |
run : pnpm package | |
lint : # make sure build/ci work properly | |
name : Lint | |
runs-on: ubuntu-latest | |
steps : | |
- uses: actions/checkout@v4 | |
- name: Use PNPM | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 10 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
cache : pnpm | |
node-version: 20 | |
- name: Install dependencies | |
run : pnpm i | |
- name: Check code styles | |
run : pnpm lint | |
test : # make sure build/ci work properly | |
name : Test | |
runs-on: ubuntu-latest | |
steps : | |
- uses: actions/checkout@v4 | |
- name: Use PNPM | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 10 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
cache : pnpm | |
node-version: 20 | |
- name: Install dependencies | |
run : pnpm i | |
- name: Run unit tests | |
run : pnpm test:coverage | |
live-test : # make sure the action works on a clean machine without building | |
name : Live Test | |
runs-on: ubuntu-latest | |
steps : | |
- uses: actions/checkout@v4 | |
- name: Changelog | |
uses: ./ | |
with: | |
semver : ${{ startsWith(github.ref, 'refs/tags/') }} | |
mention-new-contributors: ${{ github.ref_protected }} | |
live-test-with-inputs: # make sure the action works on a clean machine without building | |
name : Live Test with inputs | |
runs-on: ubuntu-latest | |
steps : | |
- uses: actions/checkout@v4 | |
- name: Changelog | |
uses: ./ | |
with: | |
commit-types : | | |
feat: Feature | |
default-commit-type : Default Type | |
mention-authors : false | |
mention-new-contributors: false | |
include-compare-link : false | |
semver : false |