Skip to content

Commit 6be7be7

Browse files
authored
fix: installerVersion not aligned with package.json version COMPASS-4545 (#2088)
* chore: set placeholder version and remove installerVersion * wip: move from travis * wip: ci * remove travis
1 parent 413b967 commit 6be7be7

File tree

4 files changed

+254
-740
lines changed

4 files changed

+254
-740
lines changed

.github/workflows/pr.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# This action runs lint checks and tests against the code.
2+
name: Check and Test
3+
4+
# Controls when the action will run.
5+
on:
6+
pull_request:
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12+
jobs:
13+
check-and-test:
14+
name: Check and Test
15+
# The type of runner that the job will run on
16+
runs-on: ubuntu-20.04
17+
18+
# Steps represent a sequence of tasks that will be executed as part of the job
19+
steps:
20+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21+
- uses: actions/checkout@v2
22+
23+
- name: Setup Node.js environment
24+
uses: actions/[email protected]
25+
with:
26+
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
27+
node-version: 12.4.0
28+
29+
- name: Install Deps Ubuntu
30+
run: sudo apt-get -y install libkrb5-dev libsecret-1-dev net-tools libstdc++6 gnome-keyring
31+
32+
- name: Install Dependencies
33+
run: npm ci
34+
35+
- name: Run Checks
36+
run: npm run check
37+
38+
- name: Run Tests
39+
run: npm run test

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)