Bump eslint from 8.30.0 to 8.46.0 #825
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
# | |
# This CI triggered on PRs. | |
# | |
# 1. Runs `npm test`, which includes lint, type-checking, and unit tests on node.js LTS 10,12,14 | |
# and the current version (v15) | |
# | |
on: | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
env: | |
STAGING_USERNAME_1: ${{ secrets.STAGING_USERNAME_1 }} | |
STAGING_PASSWORD_1: ${{ secrets.STAGING_PASSWORD_1 }} | |
STAGING_USERNAME_2: ${{ secrets.STAGING_USERNAME_2 }} | |
STAGING_PASSWORD_2: ${{ secrets.STAGING_PASSWORD_2 }} | |
STAGING_USERNAME_3: ${{ secrets.STAGING_USERNAME_3 }} | |
STAGING_PASSWORD_3: ${{ secrets.STAGING_PASSWORD_3 }} | |
STAGING_USERNAME_4: ${{ secrets.STAGING_USERNAME_4 }} | |
STAGING_PASSWORD_4: ${{ secrets.STAGING_PASSWORD_4 }} | |
STAGING_USERNAME_5: ${{ secrets.STAGING_USERNAME_5 }} | |
STAGING_PASSWORD_5: ${{ secrets.STAGING_PASSWORD_5 }} | |
STAGING_SUBSCRIPTION_ID_1: ${{ secrets.STAGING_SUBSCRIPTION_ID_1 }} | |
STAGING_SUBSCRIPTION_ID_2: ${{ secrets.STAGING_SUBSCRIPTION_ID_2 }} | |
KEYCLOAK_ADDRESS: ${{ secrets.KEYCLOAK_ADDRESS }} | |
KEYCLOAK_REALM: ${{ secrets.KEYCLOAK_REALM }} | |
API_ENDPOINT_ADDRESS: ${{ secrets.API_ENDPOINT_ADDRESS }} | |
TOKEN_HOST: ${{ secrets.TOKEN_HOST }} | |
strategy: | |
max-parallel: 1 | |
fail-fast: false | |
matrix: | |
node-version: [16, 18] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://npm.pkg.github.com" | |
- run: npm install | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: npm test |