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