Skip to content

feat(event-list): add search to table (#6) #9

feat(event-list): add search to table (#6)

feat(event-list): add search to table (#6) #9

Workflow file for this run

on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
# Run your project's build step
- name: Use Yarn 4
run: corepack enable
- name: Inject Environment Variables
run: |
echo "PUBLIC_API_URL=${{ vars.PUBLIC_API_URL }}" >> .env
- name: Build
run: yarn install --immutable && yarn build
- name: Publish
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy dist --project-name=fcc-cms-6b4t
gitHubToken: ${{ secrets.GITHUB_TOKEN }}