chore(master): release filsnap-adapter-react 2.0.1 #299
Workflow file for this run
This file contains 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: Adapter React | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'packages/adapter-react/**' | |
- .github/workflows/adapter-react.yml | |
- pnpm-lock.yaml | |
pull_request: | |
paths: | |
- 'packages/adapter-react/**' | |
- .github/workflows/adapter-react.yml | |
- pnpm-lock.yaml | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm -r --filter filsnap-adapter-react run lint | |
- run: pnpm -r --filter filsnap-adapter-react exec depcheck | |
- run: pnpm -r --filter filsnap-adapter-react run test | |
id: tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |