Regression #2414
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: Regression | |
on: | |
schedule: | |
- cron: '0 */12 * * *' | |
push: | |
branches: | |
- master | |
jobs: | |
regressions: | |
name: Regression Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version-file: .nvmrc | |
- name: Install Dependencies | |
run: npm i | |
- run: npm i -D warframe-patchlogs@^2 | |
- run: npm i --no-save warframe-worldstate-data@^2 | |
- name: Run Regression | |
run: npm run regression |