Delete request lib because it's not being used (#29) #77
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: Deploy page | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build-faucet: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: client | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --frozen-lockfile | |
- run: cp env.sample .env | |
- run: yarn run check | |
- name: Install Playwright | |
run: npx playwright install | |
- run: yarn run test | |
- run: yarn run build | |
env: | |
PUBLIC_CAPTCHA_KEY: 0f68a804-860e-4f9a-962a-39789afc8792 | |
GITHUB_PAGES: "/${{ github.event.repository.name }}" | |
STATIC: true | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: faucet | |
path: ./client/build | |
if-no-files-found: error | |
retention-days: 5 | |
test-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check that the image builds | |
run: docker build ./client --file ./client/Dockerfile | |
deploy-to-github-pages: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
needs: [build-faucet] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download page | |
uses: actions/download-artifact@v4 | |
with: | |
name: faucet | |
path: ./dist | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./dist | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |