Skip to content

Rename test file to match implementation file #16493

Rename test file to match implementation file

Rename test file to match implementation file #16493

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the right version of Nodejs
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci --omit optional
- name: Check lint & rules
run: gulp check
- name: Check types
run: npx tsc --project tsconfig.json
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the right version of Nodejs
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: E2E Tests
run: npm run e2e
- name: Upload VRT report
if: always()
uses: actions/upload-artifact@v3
with:
name: vrt-report
path: |
.vrt
vrt-report
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the right version of Nodejs
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci --omit optional
- name: Unit Tests
run: gulp unit --headless --coverage
- uses: codecov/codecov-action@v3
with:
files: ./test/coverage/lcov-unit.info