From b8c61a4a95e9210cf219b115b3f55c02fe96e42e Mon Sep 17 00:00:00 2001 From: Evgeny Tsvigun Date: Thu, 30 Mar 2023 20:45:16 +0300 Subject: [PATCH] github actions tests #30 --- .github/workflows/test.yml | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be341a6..bc23bdc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,24 +1,26 @@ -name: External Adapter build +name: External Adapter Tests on: - push: - branches: [ "**" ] - pull_request: - branches: [ "**" ] + push: + branches: [ "**" ] + pull_request: + branches: [ "**" ] jobs: - test: - runs-on: ubuntu-latest + test: + runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] - steps: - - uses: actions/checkout@v3 + strategy: + matrix: + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} - cache: 'npm' + node-version: ${{ matrix.node-version }} + cache: 'npm' - run: npm install - run: npm test