Skip to content

feat: stripdown

feat: stripdown #1

Workflow file for this run

name: "Push Testing"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
# Sets up pnpm
- name: Setup pnpm
uses: pnpm/[email protected]
# Sets up Node.js
- uses: actions/[email protected]
- name: Node ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
# Runs any test scripts
- name: Unit Tests
run: |
pnpm install
pnpm test --if-present
env:
CI: true