engine restrictions

This commit is contained in:
Michel Roux 2024-11-22 19:43:29 +01:00
parent 29c68a5506
commit f65b8a9d39
3 changed files with 19 additions and 3 deletions

View File

@ -30,9 +30,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: skjnldsv/read-package-engines-version-actions@v3
id: versions
with:
fallbackNode: '^20'
fallbackNpm: '^10'
- uses: actions/setup-node@v4
with:
node-version: "^20"
node-version: ${{ steps.versions.outputs.nodeVersion }}
- run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}'
- run: npm ci
- run: npm run lint
- run: npm run stylelint
@ -48,9 +54,15 @@ jobs:
- uses: actions/checkout@v4
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
- run: chmod +x /usr/local/bin/composer
- uses: skjnldsv/read-package-engines-version-actions@v3
id: versions
with:
fallbackNode: '^20'
fallbackNpm: '^10'
- uses: actions/setup-node@v4
with:
node-version: "^20"
node-version: ${{ steps.versions.outputs.nodeVersion }}
- run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}'
- run: make dist
- uses: akkuman/gitea-release-action@v1
with:

View File

@ -128,7 +128,7 @@ dev: build
docker rm $(app_name) || true
docker build -t $(app_name) .
docker run -itd --rm --name $(app_name) -v $(CURDIR):/var/www/html/apps/$(app_name) -p 80:80 $(app_name)
npm run watch
npm run watch || docker stop $(app_name)
# Generate translations
.PHONY: l10n

View File

@ -1,6 +1,10 @@
{
"name": "app_template",
"license": "AGPL-3.0-or-later",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "vite build",
"dev": "vite --mode development build",