Merge pull request #1821 from ilios/dependabot/npm_and_yarn/eslint-pl… #3079
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
schedule: | |
- cron: '52 5 * * 6' # weekly, on Saturday morning | |
jobs: | |
test: | |
name: Lint and Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: test | |
run: pnpm run test |