Skip to content

Fix storage connection #8

Fix storage connection

Fix storage connection #8

name: ActionStep Client CI
on:
push:
branches: ["**"]
paths: "monorepo/actionstep-client/**"
pull_request:
branches: [main]
paths: "monorepo/actionstep-client/**"
defaults:
run:
working-directory: ./monorepo
shell: bash
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- run: npm run build
- run: npm test