Skip to content

build(deps-dev): bump eslint-config-prettier from 8.6.0 to 9.0.0 #213

build(deps-dev): bump eslint-config-prettier from 8.6.0 to 9.0.0

build(deps-dev): bump eslint-config-prettier from 8.6.0 to 9.0.0 #213

Workflow file for this run

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
version: 16.x
- name: Install Dependencies
run: yarn install
- if: matrix.os != 'windows-latest'
name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build