Skip to content

ci: Disable e2e tests #4

ci: Disable e2e tests

ci: Disable e2e tests #4

Workflow file for this run

name: Build, Lint and Test
on:
push:
branches:
- "*"
pull_request:
branches:
- main
jobs:
build-lint-test:
name: Node
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Install Node 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install Dependencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Build Code
run: npm run compile
- name: Test server
working-directory: server
run:
- npm run test

Check failure on line 37 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Build, Lint and Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 37, Col: 11): A sequence was not expected
# deactive as does not work on CI
# - name: Run Unit Tests
# run: xvfb-run -a npm run test