Skip to content

add tags collection #540

add tags collection

add tags collection #540

Workflow file for this run

name: Build
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.16.0'
cache: 'yarn'
- run: yarn install
- run: yarn build
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.16.0'
cache: 'yarn'
- run: yarn install
- run: yarn test-ci