Skip to content

feat(navigation): added arrow navigation; do not stop the tour on pre… #10

feat(navigation): added arrow navigation; do not stop the tour on pre…

feat(navigation): added arrow navigation; do not stop the tour on pre… #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Build library
run: npx ng build ng-beacon --configuration production
- name: Run tests
run: npm test
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/ng-beacon/
retention-days: 14