-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (39 loc) · 1.39 KB
/
tests.yaml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: 'Tests'
on:
pull_request:
workflow_call:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
tests:
name: Run tests
runs-on: ['self-hosted', 'cere-network-large']
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Get Node.js version
id: nvm
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::${{ vars.DEV_NETWORK_AWS_ACCOUNT_ID }}:role/github
role-session-name: ${{ github.event.repository.name }}
aws-region: us-west-2
- name: Login to Amazon ECR
uses: aws-actions/amazon-ecr-login@v1
- name: Install packages
run: npm ci
- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
- name: Check protoc version
run: protoc --version
- name: Compile proto
run: npm run compile
- name: Integration tests
run: npm test