Skip to content

feat: make the unipass host become configurable #481

feat: make the unipass host become configurable

feat: make the unipass host become configurable #481

Workflow file for this run

name: github-ci
on: [ pull_request, push ]
env:
DEBUG: ckit-*
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install --frozen-lockfile --force
- name: CI
run: make github-ci