Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

MCSS-125: Add Team Section #156

MCSS-125: Add Team Section

MCSS-125: Add Team Section #156

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Linting and Check-types
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- name: Run lint command
run: yarn lint
- name: Run check-types command
run: yarn check-types