Skip to content

[hotfix] Updated bootstrap and hightlight.js libraries. #312

[hotfix] Updated bootstrap and hightlight.js libraries.

[hotfix] Updated bootstrap and hightlight.js libraries. #312

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == false
strategy:
matrix:
os: [ubuntu-latest]
node: [18, 20]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Update NPM to latest
run: npm install npm@latest -g
- name: Print Node.js and NPM version
run: |
node -v
npm -v
- name: Install dependencies for all packages
run: npm ci
- name: Run tests on all packages
timeout-minutes: 5
run: |
npm run build
npm run lint
npm test