Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: simboonlong/utility
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: simboonlong/utility
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Mar 3, 2023

  1. chore: release

    simboonlong committed Mar 3, 2023
    Copy the full SHA
    9edd82f View commit details
  2. Copy the full SHA
    5e55255 View commit details
Showing with 1,802 additions and 1,671 deletions.
  1. +2 βˆ’10 .github/workflows/manual.yml
  2. +1,785 βˆ’1,646 package-lock.json
  3. +15 βˆ’15 package.json
12 changes: 2 additions & 10 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -20,16 +20,8 @@ jobs:
run: npm run test -- --coverage
- name: Integration Test
run: npm run e2e:ci
release:
if: github.ref == 'refs/heads/master'
needs: [test]
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Semantic Release
if: ${{ !env.ACT }}
- name: Release
if: github.ref == 'refs/heads/master'
run: npx semantic-release@19.0.5 --branches master
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Loading