Skip to content

README: Add video tutorial to setup instructions #23

README: Add video tutorial to setup instructions

README: Add video tutorial to setup instructions #23

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: ubuntu-20.04
timeout-minutes: 10
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout ${{ github.sha }}
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: "Install dependencies"
run: npm ci
- name: "Lint"
run: npm run lint --if-present
- name: "Build"
run: npm run build --if-present
- name: "Test"
run: npm run test --if-present
- name: "Configure for deployment"
if: github.ref == 'refs/heads/master'
run: |
echo "$PROD_ENV" > lib/env.ts
env:
PROD_ENV: ${{ secrets.PROD_ENV }}
- name: "Deploy"
if: github.ref == 'refs/heads/master'
run: npm run deploy
env:
AIRTABLE_PERSONAL_ACCESS_TOKEN: ${{ secrets.AIRTABLE_PERSONAL_ACCESS_TOKEN }}