BADGERS-427 Abort Retrieve Manifest When Calling Reset #364
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
# This workflow will do a clean install of node dependencies and run tests | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Pull Request Checks | |
on: | |
# Trigger the workflow pull requests, | |
# but only for the master branch | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm test | |
- name: Lint the PR | |
run: ./scripts/lint-pr.sh | |
shell: bash | |
env: | |
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }} |