diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5f29bc4..2260688 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -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 diff --git a/src/app.controller.spec.ts b/src/app.controller.spec.ts index d22f389..bb5e9dd 100644 --- a/src/app.controller.spec.ts +++ b/src/app.controller.spec.ts @@ -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!'); }); }); });