Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

cicd: trigger gh actions #53

cicd: trigger gh actions

cicd: trigger gh actions #53

Workflow file for this run

name: Continuous Integration
on:
push
jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.10.5
- uses: actions/setup-node@v4
with:
node-version: 20.10.0
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: Run tests
run: |
echo "${{ secrets.ENV_TEST }}" > .env.test
pnpm test -- --forceExit