Skip to content

chore(deps): update all non-major dependencies #1385

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #1385

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16.x]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm test
- uses: codecov/codecov-action@v3
- run: pnpm play:build
- run: pnpm typecheck