revert: hack-zeroslash (#82) #139
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: Package Verifier | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Enable PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "pnpm" | |
- name: Install | |
run: pnpm install --frozen-lockfile | |
- name: Run Tests | |
run: pnpm test |