Skip to content

chore(deps): update yarn to 4.x #12

chore(deps): update yarn to 4.x

chore(deps): update yarn to 4.x #12

Workflow file for this run

name: Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Use NodeJS 18"
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install
run: yarn install
- name: Run build
run: yarn build
- name: Run test
run: yarn test
- name: Run lint
run: yarn lint