fix: prevent multiple to one worklist import, wipe old worklists #255
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: UBC Workday Extension CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
- main | |
jobs: | |
check-lint-fmt-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install deps | |
run: yarn install --immutable | |
- name: Check linting | |
run: yarn run lint | |
- name: Check formatting | |
run: yarn run fmt | |
- name: Run tests | |
run: yarn run test |