Skip to content

feat: update packages #230

feat: update packages

feat: update packages #230

Workflow file for this run

name: check tsc and lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: yarn install --ignore-optional --frozen-lockfile
- run: yarn type-check
- run: yarn lint
- run: yarn stylelint "**.css"