Skip to content

Merge pull request #724 from smartxworks/feat/remove-component #1413

Merge pull request #724 from smartxworks/feat/remove-component

Merge pull request #724 from smartxworks/feat/remove-component #1413

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install dependencies
run: yarn install
- name: run test
run: "yarn test:ci"
# uses: mattallty/jest-github-action@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# test-command: "yarn test:ci"
# coverage-comment: ${{ github.event_name == 'pull_request'}}