ci: fix error no BUILD_ID

This commit is contained in:
Catalin Pit
2023-09-30 19:18:40 +01:00
parent b918e6ba77
commit fe939d8aa4
2 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,8 @@ jobs:
run: npm ci run: npm ci
- name: Copy env - name: Copy env
run: cp .env.example .env run: cp .env.example .env
- name: Load environment variables
run: set -a; source .env
- name: Build Documenso - name: Build Documenso
run: npm run build run: npm run build
- name: Install Playwright Browsers - name: Install Playwright Browsers

View File

@ -9,7 +9,7 @@
"format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}\"", "format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}\"",
"prepare": "husky install", "prepare": "husky install",
"commitlint": "commitlint --edit", "commitlint": "commitlint --edit",
"ci": "turbo run build test:e2e lint", "ci": "turbo run test:e2e lint",
"clean": "turbo run clean && rimraf node_modules" "clean": "turbo run clean && rimraf node_modules"
}, },
"engines": { "engines": {