Skip to content

chore(deps): update yarn to v4.5.1 (#235) #738

chore(deps): update yarn to v4.5.1 (#235)

chore(deps): update yarn to v4.5.1 (#235) #738

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [v18, v20]
env:
CI: true
LINT: ${{ matrix.node-version == 'v18' && true || false }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: yarn install
- run: yarn dist
- run: yarn test:node
- run: yarn test:browser
- run: yarn lint
if: ${{ env.LINT == 'true' }}