build(deps-dev): bump eslint-plugin-security from 3.0.0 to 3.0.1 #301
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: Test Code | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
test-code: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [18, 20] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setting Up Pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: Setting Up Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version: ${{ matrix.node-version }} | |
- name: Installing Project Dependencies | |
run: pnpm install | |
- name: Building Project | |
run: pnpm build | |
- name: Running Test | |
run: pnpm test | |
env: | |
CLUSTERING: false | |
PORT: 3000 |