Regression #4509
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: Regression | |
| on: | |
| schedule: | |
| - cron: '0 */12 * * *' | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| regressions: | |
| name: Regression Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| 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@^3 | |
| - name: Run Regression | |
| run: npm run regression |