This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
Bump @types/node from 20.12.10 to 20.14.2 #486
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: Turbo CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["master"] | |
paths: | |
- "config/**" | |
- "npm/**" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "config/**" | |
- "npm/**" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build: | |
# run only if repo is not a fork | |
if: github.repository == 'codinasion/codinasion' | |
name: Build and Test | |
runs-on: ubuntu-latest | |
# To use Turborepo Remote Caching, set the following environment variables for the job. | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Build | |
run: pnpm build:packages | |
- name: Test | |
run: pnpm test |