* fix peerDependencies to handle angular >=18 * build(package.json): upgrade angular 18 * refactor(lib): removed renderer2 not used * docs(readme): add table installation dependencies
21 lines
No EOL
320 B
YAML
21 lines
No EOL
320 B
YAML
name: Run CI Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- '!master'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node-version: [21.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm install
|
|
- run: npm run test:headless:singleRun |