feat: re-order local partial configs #159
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: Node.js CI | |
on: | |
push: | |
branches: | |
- 'main' | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build-app: | |
runs-on: macos-latest | |
# success or timeout | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: { version: 8 } | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
# install deps | |
- run: pnpm install --frozen-lockfile | |
# turbo cache | |
- uses: actions/cache@v3 | |
with: | |
path: node_modules/.cache/turbo | |
key: turbo-cache-${{ runner.os }} | |
# build only | |
- run: pnpm build | |
# build .app file | |
# - run: pnpm dist:pack |