-
Notifications
You must be signed in to change notification settings - Fork 106
29 lines (26 loc) · 977 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
name: eBay UI CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "16.x"
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- run: npm i
- run: npm run build:ci
env:
BROWSERSTACK_USER: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
BROWSERSTACK_PROJECT_NAME: "CoreUI"
BUILD_NUMBER: CI
REPO_SLUG: ebay/ebayui-core
- uses: coverallsapp/github-action@master
if: ${{ success() }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .coverage/lcov.info