new version (#562) #3247
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build module artifact & deploy | |
on: [push, pull_request] | |
env: | |
NODE_VERSION: 20 | |
jobs: | |
build: | |
name: Build dependencies & create artifact | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: npm | |
cache-dependency-path: '_dev/package-lock.json' | |
- name: Install & build | |
working-directory: _dev | |
run: | | |
npm install | |
npm run build | |
- name: Install dev composer dependencies | |
run: composer install | |
- name: Generate index.php | |
run: vendor/bin/autoindex | |
- name: Install prod composer dependencies | |
run: composer install --no-dev | |
- name: Clean-up project | |
uses: PrestaShopCorp/[email protected] | |
- name: Create & upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.event.repository.name }} | |
path: ./ | |
include-hidden-files: true |