add urldecode function (#1234) #2
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: Website checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'v[0-9]+.[0-9]+' | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Prepare website container | |
run: docker compose -f docker-compose.build.yml build | |
working-directory: website | |
- name: Build website | |
run: docker compose -f docker-compose.build.yml up --exit-code-from website | |
working-directory: website |