-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use tsup instead of babel * Add attw check to workflow * Fix * Fix attw check * Fix attw again * Fix * Fix * Use Fetch API instead of Axios * Fix tests * Fix wait-for-triggered-checks * Fix
- Loading branch information
Showing
12 changed files
with
1,057 additions
and
2,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ jobs: | |
uses: poseidon/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore: codecov/* | ||
ignore_pattern: ^codecov/.+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,21 @@ jobs: | |
python-version: "3.12" | ||
- uses: pre-commit/[email protected] | ||
|
||
check-attw: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build package | ||
run: npm run build | ||
- name: Check if types are wrong with attw | ||
run: npx -p @arethetypeswrong/cli attw --pack . | ||
|
||
test-coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/coverage | ||
/lib | ||
/dist | ||
/node_modules | ||
|
||
# misc | ||
|
Oops, something went wrong.