Skip to content

chore: fix import on save #84

chore: fix import on save

chore: fix import on save #84

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Configure yarn caching
uses: actions/cache@v2
with:
path: ~/.yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/workflows/prettier.yml') }}
restore-keys: |
${{ runner.os }}-yarn-
- 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: Format the code
run: yarn run prettier
- name: Check the code style
run: yarn run lint:eslint
- name: Check the types
run: yarn run check-types
- name: Build the project
run: yarn run build