Require tijsverkoyen/deployer-sumo v4.1.0 #155
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: Test project skeleton | |
on: | |
push: | |
branches: ['*'] | |
workflow_dispatch: | |
branches: ['*'] | |
jobs: | |
create-project: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/fermium | |
- name: Install volta | |
uses: volta-cli/action@v3 | |
- name: Run composer create-project | |
run: composer create-project --no-progress --stability=dev sumocoders/application-skeleton:dev-${GITHUB_REF##*/} test |