12345678910111213141516171819202122232425262728293031323334 |
- # This workflow will do a clean installation of node dependencies, cache/restore them, 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: CI Tests
- on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- workflow_dispatch:
- jobs:
- build:
- runs-on: ubuntu-latest
- env:
- DISPLAY: :99.0
- strategy:
- matrix:
- node-version: [22.x]
- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
- 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'
- - name: Run Karma tests
- uses: GabrielBB/xvfb-action@v1
- with:
- run: make check ARGS=--single-run
|