feat: stripdown #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |