Add ttl_days
and history_days
#88
Workflow file for this run
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: Serverless Fauna Validate | |
on: | |
pull_request: | |
paths: | |
- "**" | |
defaults: | |
run: | |
working-directory: ./ | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ">=18.x" | |
- name: Install | |
run: | | |
npm install | |
- name: Prettier | |
run: npm run lint-ci | |
test: | |
runs-on: ubuntu-latest | |
services: | |
fauna: | |
image: fauna/faunadb:latest | |
ports: | |
- 8443:8443 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ">=18.x" | |
- name: Install | |
run: | | |
npm install | |
- name: Test | |
run: | | |
npm test | |
npm run examples |