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

cicd: testing

cicd: testing #44

Workflow file for this run

name: Continuous Integration
on:
push
jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
env:
ENV_TEST: ${{ secrets.ENV_TEST }}
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
- run: echo $ENV_TEST > .env.test && cat .env.test && pnpm test -- --forceExit