Skip to content

chore(deps): update yarn to v1.22.22 #110

chore(deps): update yarn to v1.22.22

chore(deps): update yarn to v1.22.22 #110

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Test
run: yarn test --passWithNoTests
- name: Build
run: yarn build