chore(deps): update dependency chai to v4.5.0 #824
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: Renovate | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Checkout and Set Git User | |
# run: | | |
# git config --global user.name "Brandon Bothell" | |
# git config --global user.email "[email protected]" | |
- uses: actions/[email protected] | |
with: | |
node-version: '20.5.0' | |
- name: Lint | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: lint | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Build | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Test build of documentation | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: docs:build | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Run unit tests | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test | |
env: | |
YOUTUBE_API_KEY: ${{ secrets.YOUTUBE_API_KEY }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# - name: Commit dependency files | |
# run: | | |
# git add .yarn/ .pnp.* yarn.lock docusaurus/.yarn/ docusaurus/.pnp.* docusaurus/yarn.lock | |
# git commit -m "chore(deps): update lockfile and package cache" | |
# - name: Push dependency files | |
# uses: ad-m/[email protected] | |
# with: | |
# github_token: ${{ secrets.GIT_ACCESS_TOKEN }} | |
# branch: ${{ github.ref }} |