Skip to content

feat: Implement OP Handbook Repository #28

feat: Implement OP Handbook Repository

feat: Implement OP Handbook Repository #28

Workflow file for this run

name: Test Scripts
on:
pull_request:
types: [opened, synchronize]
branches:
- dev
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
working-directory: scripts
run: pnpm test