forked from angular/vscode-ng-language-service
-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (28 loc) · 862 Bytes
/
node.js.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This workflow will do a clean install of node dependencies, build the source code and run the E2E tests.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: E2E Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- run: yarn install
- run: yarn install --cwd integration/project
- run: cd integration/project
- run: scripts/build.sh package.json
- run: xvfb-run -a yarn run test:e2e
if: runner.os == 'Linux'
- run: yarn run test:e2e
if: runner.os != 'Linux'