This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
v4.1.4 #22
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] | |
os: [ubuntu-latest] | |
steps: | |
# Checks out git | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Installs PNPM | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2.2.4 | |
# Sets Node.js up | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
# Runs any test scripts | |
- name: Unit Tests | |
run: | | |
pnpm install | |
pnpm test --if-present | |
env: | |
CI: true |