feat(core): add compilerOptions support (#32) #26
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: '🏗️ PR Merged' | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci') || github.event.pull_request.merged == 'true'" | |
concurrency: version | |
runs-on: ubuntu-latest | |
steps: | |
- name: '🔨 Init node' | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
scope: '@traf' | |
node-version: 18 | |
- name: '🔨 Checkout code' | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 0 | |
token: ${{ env.GITHUB_FORCE_PUSH_TOKEN || github.token }} | |
- name: '🔨 Cache node modules' | |
id: cache-nodemodules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: '🔨 Install dependencies' | |
shell: bash | |
if: steps.cache-nodemodules.outputs.cache-hit != 'true' | |
run: npm ci | |
- run: npm run affected build | |
- run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions CI" | |
shell: bash | |
- name: Main release | |
run: npm run version -- --push --baseBranch main | |
shell: bash |