Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,22 @@ on:

jobs:
build:
# Specify the server
runs-on: ubuntu-latest

strategy:
matrix:
# Make sure it runs in different node versions
node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

# Steps that we need to take to run this job
steps:
# Checkout into feature branch
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
# Setup node repo
uses: actions/setup-node@v2
with:
# Using node versions
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
Expand Down
2 changes: 1 addition & 1 deletion src/app.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('AppController', () => {

describe('root', () => {
it('should return "Hello World!"', () => {
expect(appController.getHello()).toBe('Hello World!');
expect(appController.getHello()).toBe('Goodbye World!');
});
});
});