mirror of
https://github.com/FormidableLabs/react-fast-compare.git
synced 2026-01-18 16:13:59 +00:00
39 lines
852 B
YAML
39 lines
852 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
issues: write
|
|
repository-projects: write
|
|
deployments: write
|
|
packages: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Unit Tests
|
|
run: yarn test
|
|
|
|
- name: PR or Publish
|
|
id: changesets
|
|
uses: changesets/action@v1
|
|
with:
|
|
version: yarn changeset version
|
|
publish: yarn changeset publish
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|