Skip to content

Commit

Permalink
Merge pull request #793 from object1037/object1037-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
object1037 authored Apr 6, 2024
2 parents f1f3772 + a514713 commit e8ab1de
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build_and_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: build_and_check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build_and_check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Setup env file
shell: bash
run: |
touch .dev.vars
echo GITHUB_CLIENT_ID="123456789" >> .dev.vars
echo GITHUB_CLIENT_SECRET="123456789" >> .dev.vars
echo CALLBACK_URL="123456789" >> .dev.vars
echo SESSION_SECRET="123456789" >> .dev.vars
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Run tsc
run: pnpm typecheck
- name: Run ESLint
run: pnpm lint
- name: Run Prettier
run: pnpm fmt
- name: Cleanup env file
run: rm .dev.vars

0 comments on commit e8ab1de

Please sign in to comment.