Skip to content

New API added (#264) #444

New API added (#264)

New API added (#264) #444

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: self-hosted
strategy:
max-parallel: 1
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Create .env file
run: |
touch .env
echo HOST=${{ secrets.HOST }} >> .env
echo EMAIL=${{ secrets.EMAIL }} >> .env
echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env
- run: npm run build
- run: npm run test:unit
- run: npm run test:integration
- run: npm run lint
env:
CI: true