chore(deps): bump micromatch from 4.0.5 to 4.0.8 #62733
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: Generate Pages | |
env: | |
CI: true | |
FORCE_COLOR: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "15 * * * *" | |
jobs: | |
lqty-supply: | |
name: Generate API files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Setup Node.js & Yarn | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
env: | |
# Workaround for https://github.com/actions/setup-node/issues/317 | |
FORCE_COLOR: 0 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Fetch API data | |
run: yarn once | |
env: | |
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} | |
TRANSPOSE_API_KEY: ${{ secrets.TRANSPOSE_API_KEY }} | |
- name: Commit generated files | |
uses: EndBug/[email protected] | |
if: ${{ github.event_name != 'pull_request' }} | |
with: | |
message: "chore: update generated files" | |
default_author: github_actions | |
add: docs | |
pull_strategy: NO-PULL | |
push: --force origin HEAD:pages |