Skip to content

Auto-update dependencies and plugins #676

Auto-update dependencies and plugins

Auto-update dependencies and plugins #676

Workflow file for this run

name: CI
on:
pull_request: {}
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "yarn"
- name: Install
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build