Install dependencies from lock file in github actions (#686)

This commit is contained in:
schroda
2024-03-31 23:36:39 +02:00
committed by GitHub
parent dc1a6cbd16
commit 8d265f1ddf
3 changed files with 3 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ jobs:
node-version-file: 'package.json'
- name: Install modules
run: yarn
run: yarn ci
- name: Run ESLint
run: yarn lint

View File

@@ -39,7 +39,7 @@ jobs:
- name: Build webUI
run: |
cd master
yarn install
yarn ci
yarn build
yarn build-zip
yarn build-md5

View File

@@ -3,6 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"ci": "yarn install --frozen-lockfile",
"dev": "vite",
"preview": "vite preview",
"build": "vite build",