Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Update README.md (#6) #5

Update README.md (#6)

Update README.md (#6) #5

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
CACHE_AFFIX: pnpm-packages
jobs:
test:
name: Testing
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install pnpm package manager
uses: pnpm/action-setup@v2
with:
version: 8
- name: setup node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: restore cache for packages if applicable
uses: actions/cache@v3
id: packages-cache
with:
path: "${{ env.PNPM_CACHE_FOLDER }}"
key: ${{ runner.os }}-${{ env.CACHE_AFFIX }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-${{ env.CACHE_AFFIX }}-
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: Testing
run: pnpm run test