Skip to content

Commit

Permalink
github actions tests #30
Browse files Browse the repository at this point in the history
  • Loading branch information
utgarda committed Mar 30, 2023
1 parent 7958f5a commit b8c61a4
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b8c61a4

Please sign in to comment.