Skip to content

Merge branch 'main' of https://github.com/epilot-dev/sdk-js #1172

Merge branch 'main' of https://github.com/epilot-dev/sdk-js

Merge branch 'main' of https://github.com/epilot-dev/sdk-js #1172

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
tags: ["*"]
pull_request:
branches: ["main"]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm test
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npx lerna publish from-package --yes --no-verify-access --ignore-prepublish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}