Updates #35
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
branches: ['*'] | |
workflow_dispatch: | |
jobs: | |
main: | |
name: Validate and Deploy | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- name: Setup timezone | |
uses: zcong1993/setup-timezone@master | |
with: | |
timezone: America/Sao_Paulo | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install Packages | |
run: pnpm install | |
timeout-minutes: 3 | |
- name: Validate | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
run: pnpm run validate | |
timeout-minutes: 3 | |
- name: SonarCloud Scan Base | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_BASE }} | |
with: | |
projectBaseDir: packages/tree-changes | |
- name: SonarCloud Scan Hook | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_HOOK }} | |
with: | |
projectBaseDir: packages/tree-changes-hook | |
- name: Publish Packages | |
if: startsWith(github.ref, 'refs/tags/') | |
run: lerna publish from-git --no-verify-access --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |