Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter Negation from AurorNZ fork #170

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6706fee
Replace picomatch with micromatch
Obi-Dann Feb 28, 2022
5af776f
Add tests for the filter with negation
Obi-Dann Mar 1, 2022
fa09eba
Merge pull request #1 from AurorNZ/use-micromatch
Obi-Dann Mar 1, 2022
1497c53
v3
Obi-Dann Mar 1, 2022
48131fd
Update Action to Node 16
Oct 15, 2022
f12b3ce
Merge pull request #1 from jbarmash/jbarmash-upgrade-action-to-node16
Oct 15, 2022
5b3a607
merge in some of main
jordanb-afs Apr 10, 2023
6098719
backport changes to use newer core
jordanb-afs Apr 10, 2023
00ec0bc
bump jest back, typescript version was the real issue
jordanb-afs Apr 10, 2023
0bb611c
Merge pull request #3 from ApprenticeFS/merge-main-from-dorny
Obi-Dann May 2, 2023
996e087
Fix security alerts
Obi-Dann May 2, 2023
45ee11c
Merge pull request #5 from AurorNZ/Fix-security-alerts
Obi-Dann May 2, 2023
7c547bd
Release 3.0.1
Obi-Dann May 2, 2023
e55b1ed
Upgrade node to 20
Obi-Dann Jan 30, 2024
2c495ec
Upgrade all the things
Obi-Dann Jan 30, 2024
721c731
Rebuild
Obi-Dann Jan 30, 2024
d8fa5d4
Add changelog
Obi-Dann Jan 30, 2024
3b1f3ab
Merge pull request #9 from AurorNZ/upgrade_node_version_and_dependencies
Obi-Dann Jan 30, 2024
b671dc3
Update action versions in Readme
Obi-Dann Jan 30, 2024
768f03c
Migrate to pnpm and volta
alex-auror Sep 11, 2024
9a1e626
Merge pull request #13 from AurorNZ/migrate_pnpm
alex-auror Sep 11, 2024
6818e25
Migrate jest to vitest
alex-auror Sep 11, 2024
f81aac8
Merge pull request #14 from AurorNZ/vitest
alex-auror Sep 11, 2024
00461c6
Upgrade eslint
alex-auror Sep 11, 2024
19fa779
Fix lint findings
alex-auror Sep 11, 2024
09d0925
Fix prettier config erroring on json
alex-auror Sep 11, 2024
e597062
Merge pull request #15 from AurorNZ/eslint_upgrade
alex-auror Sep 11, 2024
c4f6f67
Use esbuild to generate esm bundle
alex-auror Sep 11, 2024
61068b0
Add import extensions
alex-auror Sep 11, 2024
f46f3f0
Generate new bundle
alex-auror Sep 11, 2024
d28a639
Check dist has been updated for new builds
alex-auror Sep 11, 2024
5c7b514
Bump packages
alex-auror Sep 11, 2024
bfc6e48
Generate new bundle
alex-auror Sep 11, 2024
6f1712f
Bump actions
alex-auror Sep 11, 2024
54ebb4d
Merge pull request #16 from AurorNZ/esbuild_esm
alex-auror Sep 11, 2024
298e00d
Merge pull request #17 from AurorNZ/bump_packages
alex-auror Sep 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: |
pnpm install
Expand All @@ -21,7 +21,7 @@ jobs:
self-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
id: filter
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull-request-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
id: filter
with:
Expand All @@ -55,7 +55,7 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
id: filter
with:
Expand All @@ -67,7 +67,7 @@ jobs:
test-without-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
id: filter
with:
Expand All @@ -80,7 +80,7 @@ jobs:
test-wd-without-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: somewhere
- uses: ./somewhere
Expand All @@ -96,7 +96,7 @@ jobs:
test-local-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: echo "NEW FILE" > local
- run: git add local
- uses: ./
Expand Down
Loading