Skip to content

Update main.yml

Update main.yml #15

Workflow file for this run

name: simple-signer-demo CI workflow
on:
push:
branches: ['main']
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start Stellar Server
run: docker-compose up -d stellar
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: NPM or Yarn install with caching
uses: bahmutov/[email protected]
- name: Run Stellar Test
run: npm run test