Skip to content

fix: prevent multiple to one worklist import, wipe old worklists #255

fix: prevent multiple to one worklist import, wipe old worklists

fix: prevent multiple to one worklist import, wipe old worklists #255

Workflow file for this run

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