Program name in donation records (#3316) #13958
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: JavaScript | |
on: | |
push: | |
jobs: | |
lint-tests: | |
name: "Lint and test the codebase" | |
environment: production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint codebase | |
run: yarn lint | |
- name: Test codebase | |
run: yarn test --bail=0 --watch=false --passWithNoTests | |
- name: Build codebase | |
run: yarn build |