Skip to content

Commit

Permalink
feat: Add CI for Pull Requests [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekCornerGH authored Aug 13, 2024
1 parent 44af779 commit fcc123c
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/CI4PRs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI for Pull Requests

on:
pull_request:
branches: [ "main" ]
jobs:
deploy:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4.1.6
name: Clone the repository
with:
fetch-depth: 0
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 #v4.0.2
name: Install Node.JS
with:
node-version: 20.x
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
name: Install pnpm
with:
version: 9
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #
with:
path: ${{env.STORE_PATH}}
key: ${{runner.os}}-pnpm-cache-${{ hashFiles('./pnpm-lock.yaml')}}
restore-keys: ${{runner.os}}-pnpm-cache-
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Build website
shell: bash
run: pnpm build

0 comments on commit fcc123c

Please sign in to comment.