Skip to content

add pending type

add pending type #97

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
ci:
if: contains(github.event.head_commit.message, 'skip ci') == false
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: 👉🏼 Checkout
uses: actions/checkout@v2
- name: 📦️ Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: 🚚 Install dependencies
run: yarn install
- name: 👷 Build packages
run: yarn build
- name: 🧐 Lint Files
run: yarn lint
- name: 🧾 Run Unit Tests
run: yarn test