Skip to content

Adds passing portal test #520

Adds passing portal test

Adds passing portal test #520

Workflow file for this run

name: Unit test
on: push
jobs:
container-job:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.npm
.spago
${{ env.spago_global_cache }}
output
key: >-
${{ hashFiles('pnpm-lock.yaml') }}-
${{ hashFiles('spago.yaml') }}
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 7.13.2
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Install
run: pnpm i
- name: Test
run: pnpm t