chore(deps): update dependency @changesets/cli to ^2.27.5 #999
8000
Sign in to view logs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
ci: | |
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-s 2878 etup@v2 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Build, Lint and Test | |
run: pnpm run-s build lint test | |
env: | |
EFF_NO_LINK_RULES: true | |
PARSER_NO_WATCH: true | |
- name: Codecov | |
uses: codecov/codecov-action@v3 |