Skip to content

Merge pull request #190 from sullog-official/fix/handle-token-undefined #15

Merge pull request #190 from sullog-official/fix/handle-token-undefined

Merge pull request #190 from sullog-official/fix/handle-token-undefined #15

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: npm install -g yarn
- name: Install the project dependencies
run: yarn install
- name: Prettier check
run: yarn prettier
- name: Lint check
run: yarn lint
- name: Stylelint check
run: yarn lint:css
- name: Type check
run: yarn type-check