chore(deps): bump the npm_and_yarn group across 2 directories with 7 updates #1
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: Test Dependabot PR | |
on: | |
pull_request_target: | |
types: | |
- synchronize | |
- reopened | |
- opened | |
branches: | |
- 'master' | |
jobs: | |
test: | |
name: Run Tests and Build (sanity) | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- name: Install dev dependencies | |
run: npm ci | |
- name: Build Backend | |
run: 'npm run build:backend' | |
- name: Test Backend | |
run: npm run test | |
- name: Install Docs Deps | |
run: npm run docs:install | |
- name: Build | |
run: npm run build |