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

cicd: trigger github actions #40

cicd: trigger github actions

cicd: trigger github actions #40

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

Check failure on line 24 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
pnpm test -- --forceExit