Merge pull request #5 from passby6someone/main #73
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 | |
permissions: | |
id-token: write | |
pull-requests: read | |
actions: read | |
statuses: read | |
contents: read | |
packages: read | |
checks: write | |
on: | |
push: | |
branches: | |
# Change this if your primary branch is not main | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
run: corepack enable pnpm | |
# Cache node_modules | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- run: pnpm i --frozen-lockfile | |
# - uses: nrwl/nx-set-shas@v4 | |
# - run: | | |
# echo "BASE: ${{ env.NX_BASE }}" | |
# echo "HEAD: ${{ env.NX_HEAD }}" | |
# This line is needed for nx affected to work when CI is running on a PR | |
# - run: git branch --track main origin/main | |
- run: pnpm nx format:check | |
# - run: pnpm nx affected -t lint,test,build --parallel=3 --exclude='tag:wip' | |
- run: pnpm nx run-many -t lint,test,build --parallel=3 | |
- name: Publish | |
shell: pwsh | |
run: | | |
npm config set provenance true | |
$commit = "$(git log -1 --pretty=%B)".Trim() | |
if (!($commit -match "^((core|ws)@[0-9]+\.[0-9]+\.[0-9]+\+?)+$")) { | |
Write-Host "Not a release, skipping publish" | |
exit 0 | |
} | |
echo "//registry.npmjs.org/:_authToken=$env:NPM_TOKEN" >> ~/.npmrc | |
if ($commit -match "core@[0-9]+\.[0-9]+\.[0-9]+") { | |
pnpm nx run core:publish --ver $($Matches[0]) | |
} | |
if ($commit -match "ws@[0-9]+\.[0-9]+\.[0-9]+") { | |
pnpm nx run ws:publish --ver $($Matches[0]) | |
} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |