feat(auth): add facebook sign in/up (#49) #11
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: openapi-deploy | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "openapi/*" | |
jobs: | |
openapi-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install redocly | |
run: pnpm add --ignore-scripts -D @redocly/cli | |
- name: Validate openapi | |
run: pnpm run lint:openapi | |
- name: Build openapi | |
run: pnpm run openapi:bundle | |
- name: Deploy to readme | |
uses: readmeio/rdme@v8 | |
with: | |
rdme: openapi ./openapi/bundle.yaml --key=${{ secrets.README_API_KEY }} --version=1.0 --id=${{ secrets.READMEIO_API_ID}} |