Skip to content

Merge pull request #313 from 1c-syntax/master #7

Merge pull request #313 from 1c-syntax/master

Merge pull request #313 from 1c-syntax/master #7

Workflow file for this run

name: Run e2e tests
on:
push:
branches:
- develop
- feature/gh-workflow
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install OneScript
uses: otymko/[email protected]
with:
version: '1.9.2'
- name: Install oscript-config
run: opm install oscript-config
- run: npm install
- run: npm run preLaunch
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'