Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Update README.md

Update README.md #17

Workflow file for this run

name: develop
on:
push:
branches:
- develop
- main
- next
pull_request:
branches:
- develop
- main
- next
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: 6.27.1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 14
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Run tests
run: pnpm test
env:
AIRTABLE_KEY: ${{secrets.AIRTABLE_KEY}}
AIRTABLE_BASE: ${{secrets.AIRTABLE_BASE}}
AIRTABLE_TABLE: ${{ matrix.os }}
TEST_FILTER: "{email} = '[email protected]'"
NEW_RECORD: '{"title": "test-create", "value": 23, "email": "[email protected]"}'
UPDATE_RECORD: '{"title": "test-UPDATED"}'
BULK_UPDATE: '{"title": "test-BULK"}'
DESTRUCTIVE_UPDATE_RECORD: '{"title": "test-UPDATED-destructive", "value": 23}'
RETRY_TIMEOUT: 60000
REQ_COUNT: 100