feat: update attachment deletion logic to ensure database records are… #1363
Workflow file for this run
This file contains hidden or 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: "Run tests" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: "Install Node" | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| - name: Install dependencies | |
| run: | | |
| echo //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} > .npmrc | |
| npm ci | |
| - name: "Run Test" | |
| run: npm run test |