Skip to content

Commit

Permalink
chore: semver
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed Mar 28, 2022
1 parent 99db7b8 commit f8ba3ee
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Expand Up @@ -28,11 +28,7 @@ jobs:
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn version check
if: "github.actor != 'dependabot[bot]' && !contains(github.ref , 'release/') && !contains(github.head_ref , 'release/')"
name: Version Check

- run: yarn install
name: Install Dependencies

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/version-check.yml
@@ -0,0 +1,16 @@
name: Version Check
on: [push, pull_request]
env:
DEFAULT_NODE_VERSION: 16
jobs:
version-check:
runs-on: ubuntu-latest
if: "github.ref != 'main' && github.head_ref != 'main' && !contains(github.ref , 'release/') && !contains(github.head_ref , 'release/') && !contains(github.ref , 'dependabot/') && !contains(github.head_ref , 'dependabot/')"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: ${{env.DEFAULT_NODE_VERSION}}
- run: yarn version check
9 changes: 9 additions & 0 deletions .yarn/versions/e42d7e63.yml
@@ -0,0 +1,9 @@
releases:
react-dnd-html5-backend: patch

declined:
- react-dnd-documentation
- react-dnd-examples
- test-suite-cra
- test-suite-vite
- react-dnd-test-utils

0 comments on commit f8ba3ee

Please sign in to comment.