Skip to content

chore(deps): bump the npm_and_yarn group with 3 updates #1173

chore(deps): bump the npm_and_yarn group with 3 updates

chore(deps): bump the npm_and_yarn group with 3 updates #1173

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: echo "@infragistics:registry=https://packages.infragistics.com/npm/js-licensed/" >> ~/.npmrc
- run: echo "//packages.infragistics.com/npm/js-licensed/:_auth=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
- run: echo "//packages.infragistics.com/npm/js-licensed/:always-auth=true" >> ~/.npmrc
- run: npm ci
- run: npm run lint
- name: Build
if: matrix.node-version == '20.x'
run: npm run build
- run: npm run test:prod
- run: cat ./coverage/{bellum-gens,common,eb-league}/lcov.info > coverage/lcov.info
- name: Publish to coveralls.io
if: matrix.node-version == '18.x'
uses: coverallsapp/[email protected]
with:
github-token: ${{ github.token }}
- name: Cypress run
if: matrix.node-version == '18.x'
uses: cypress-io/[email protected]
with:
build: npm run build:ssr
start: npm run serve:ssr:bellumgens