build(deps-dev): bump rimraf from 5.0.8 to 6.0.1 #914
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: Run VIP-cli tests | |
on: pull_request | |
env: | |
NODE_OPTIONS: --unhandled-rejections=warn | |
DO_NOT_TRACK: '1' | |
jobs: | |
Run_windows_tests: | |
name: Run Windows Tests | |
runs-on: windows-latest | |
steps: | |
# To prevent issues with fixtures on Windows tests | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
path: vip | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm ci | |
working-directory: vip | |
- name: Unit Tests | |
working-directory: vip | |
run: npm run jest | |
- name: Test Command line | |
working-directory: vip | |
run: ./__tests__/e2e_test.bat |