[Site] Update RegistrationForm.html.twig use form_end instead of html form #854
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: ux.symfony.com | |
on: | |
push: | |
paths: | |
- 'ux.symfony.com/**' | |
pull_request: | |
paths: | |
- 'ux.symfony.com/**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ux.symfony.com | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
with: | |
working-directory: ux.symfony.com | |
- name: Importmap dependencies | |
run: php bin/console importmap:install | |
- name: Build Sass assets | |
run: php bin/console sass:build | |
- name: Tests | |
run: vendor/bin/phpunit |