ci(.github): add checkout step #25
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: Push | |
on: | |
push: | |
branches: | |
- main | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
setup: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Setup pnpm cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm bootstrap:ci | |
run: | |
needs: setup | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: NX Affected | |
uses: nrwl/nx-set-shas@v4 | |
- name: Checkout Main | |
run: git branch --track main origin/main | |
- name: Build, Lint, Test | |
run: npx nx affected -t build,lint,test --parallel=3 | |
publish: | |
needs: run | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Config Git User | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: NPM Registry Authentication | |
run: | | |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | |
- name: Bump Versions | |
run: | | |
pnpm version:ci | |
- name: Publish Packages | |
run: | | |
pnpm publish:ci |