Skip to content

feat: create function for fetching group info #9

feat: create function for fetching group info

feat: create function for fetching group info #9

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.14.0]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v2
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
- name: Install
run: npm install
- name: ESLint
run: npm run eslint
- name: Prettier
run: npm run prettier