Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade afj #21

Merged
merged 7 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Integration Tests
strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x]
steps:
- name: Checkout veritable-cloudagent
uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test and Lint

on:
pull_request:
branches: [main]
branches: [main]
types: [opened, synchronize, reopened, labeled]
push:
branches: [main]
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
node-version: 18
- name: Install dependencies
run: npm install
- name: Compile
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
node-version: 18
- name: Install dependencies
run: npm install
- name: Compile
Expand All @@ -64,7 +64,7 @@ jobs:
name: Integration Tests
strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x]
steps:
- name: Checkout veritable-cloudagent
uses: actions/checkout@v3
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
node-version: 18

- name: Install dependencies
run: npm install
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
node-version: 18
if: ${{ steps.release-please.outputs.release_created }}
- name: Install dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ coverage
.bash_history
.ngrok

logs.txt
npm-debug.log*
*.log
*.tsbuildinfo
Expand Down
3 changes: 2 additions & 1 deletion .mocharc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';
'use strict'

const base = {
require: ['ts-node/register'],
Expand All @@ -19,4 +19,5 @@ module.exports = {
slow: 100,
watch: false,
retries: 0,
exit: true,
}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ RUN apt-get update -y && apt-get install -y \
apt-transport-https \
curl \
# Only needed to build indy-sdk
build-essential
build-essential

# libindy
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
RUN add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable"

# nodejs
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash

# install depdencies
RUN apt-get update -y && apt-get install -y --allow-unauthenticated \
Expand Down
4 changes: 2 additions & 2 deletions afj-arm.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ RUN apt-get update -y && apt-get install -y \
apt-transport-https \
curl \
# Only needed to build indy-sdk
build-essential
build-essential

# libindy
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
RUN add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable"

# nodejs
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash

# install depdencies
RUN apt-get update -y && apt-get install -y --allow-unauthenticated \
Expand Down
Loading