Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: bahmutov/ban-sensitive-files
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 73253334e04882ae2c44422e5e5f004076ab4ab0
Choose a base ref
..
head repository: bahmutov/ban-sensitive-files
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b000945908cc9da9ed86bd5a86e1c411a930b52
Choose a head ref
Showing with 13,051 additions and 1,535 deletions.
  1. +6 −3 .github/workflows/ci.yml
  2. +13,041 −1,528 package-lock.json
  3. +4 −4 package.json
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -7,6 +7,11 @@ jobs:
- name: Checkout 🛎
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Install NPM dependencies 📦
uses: bahmutov/npm-install@v1

@@ -17,9 +22,7 @@ jobs:
npm run ban -f
- name: Semantic Release 🚀
uses: cycjimmy/semantic-release-action@v2
with:
branch: master
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading