Skip to content

feat: add interface generation #445

feat: add interface generation

feat: add interface generation #445

Workflow file for this run

name: CI
# on:
# push:
# branches:
# - develop
# - master
# pull_request:
# branches:
# - develop
# - master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v1
- name: Cache npm dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install npm dependencies
run: npm install
- name: Run tests
run: npm run test:ci