chore(deps-dev): bump qs from 6.14.0 to 6.14.2 #179
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
| # Automatically run unit tests on every push and pull-request to the repository | |
| name: Unit Test | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, synchronize] | |
| schedule: | |
| - cron: "0 17 * * 6" | |
| jobs: | |
| run-test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| - name: Install dependencies | |
| run: | | |
| npm update | |
| npm install | |
| - name: Run unit tests | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: npm test | |
| working-directory: ./ |