mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
31 lines
846 B
YAML
31 lines
846 B
YAML
name: Node.js CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master, next]
|
|
|
|
jobs:
|
|
release:
|
|
if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/master' || github.event.ref == 'refs/heads/next') }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [22.x]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: yarn
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn lint
|
|
- run: yarn test
|
|
- run: yarn lint:types
|
|
- run: yarn build
|
|
- name: Semantic Release
|
|
uses: cycjimmy/semantic-release-action@v4
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|