Skip to content

auditlist filter for date misses for today issue resolved #1914

auditlist filter for date misses for today issue resolved

auditlist filter for date misses for today issue resolved #1914

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn
- run: yarn build
- run: yarn test
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Execute playwright tests
continue-on-error: true
run: yarn e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report
retention-days: 7