Skip to content

Update rough filtering logic #11

Update rough filtering logic

Update rough filtering logic #11

Workflow file for this run

name: Build & Deploy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-deploy:
env:
PUBLIC_GRAPHQL_API_URL: "https://api.vra.stevecrow.dev"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- run: npm run test --if-present
- uses: a7ul/[email protected]
with:
command: c
cwd: "./"
files: |
build/
Dockerfile
node_modules/
package.json
package-lock.json
outPath: deploy.tar
- name: Deploy App to CapRover
uses: caprover/[email protected]
with:
server: '${{ secrets.CAPROVER_SERVER }}'
app: '${{ secrets.CLIENT_APP_NAME }}'
token: '${{ secrets.CLIENT_APP_TOKEN }}'