Skip to content

Introduce E2E tests

Introduce E2E tests #1

Workflow file for this run

name: E2E
on:
push:
branches: [ master ]
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npx tsc --build
- run: node dist/e2e.js