chore(deps-dev): bump braces from 3.0.2 to 3.0.3 #656
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 and deploy web app | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/build-deploy-web-app.yaml" | |
- "public/**" | |
- "summary/**" | |
- "util/build.sh" | |
- ".detaignore" | |
- "index.js" | |
- "package-lock.json" | |
- "package.json" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "public/**" | |
- "summary/**" | |
- "util/build.sh" | |
- "index.js" | |
- "package-lock.json" | |
- "package.json" | |
workflow_dispatch: # Allows manual execution of workflow | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Perform linting check | |
run: npm run lint:check | |
build: | |
if: startsWith(github.ref, 'refs/pull/') | |
runs-on: ubuntu-latest | |
container: "docker://asciidoctor/docker-asciidoctor:latest" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build summary pages using Asciidoctor Jet | |
run: ./util/build.sh | |
build-and-deploy: | |
needs: lint | |
if: startsWith(github.ref, 'refs/heads/') | |
runs-on: ubuntu-latest | |
container: "docker://asciidoctor/docker-asciidoctor:latest" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build summary pages using Asciidoctor Jet | |
run: ./util/build.sh | |
- name: Deploy to Deta | |
uses: HarshKapadia2/[email protected] | |
with: | |
deta-access-token: ${{ secrets.DETA_TOKEN }} | |
deta-name: web-app-micro | |
deta-project: catchup | |
deta-project-dir: "." |