Skip to content

Commit

Permalink
ci: add build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
himself65 committed May 8, 2023
1 parent 3b9a0e0 commit 7f30fe0
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,47 @@
name: Build and Test

on:
pull_request:
branches:
- stable
push:
branches:
- stable
- dev

jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm run build

- name: Test
run: pnpm run test
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
shell-emulator=true
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
18

0 comments on commit 7f30fe0

Please sign in to comment.