Skip to content

Commit 8e6ef7a

Browse files
author
Mr Martian
committed
fix bugs; improve actions for this repo
1 parent 6933fd4 commit 8e6ef7a

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/coveralls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Bun tests
2525

2626
- name: Run JavaScript/TypeScript tests
27-
run: bun run test
27+
run: bun run test:S2
2828

2929
# upload to Coveralls
3030

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: bun install
29+
30+
- name: Run TypeScript linting & ensure building distribution files working
31+
run: bun run lint:S2 && bun run build:ESM && bun run build:frameworks
2932

30-
- name: Run JavaScript/TypeScript tests
31-
run: bun run test
33+
- name: Run TypeScript tests
34+
run: bun run test:S2

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<h1 align="center">S2 Maps GPU</h1>
55

66
<p align="center">
7-
<img src="https://img.shields.io/github/stars/Open-S2/s2maps-gpu" alt="stars">
87
<a href="https://img.shields.io/github/actions/workflow/status/Open-S2/s2maps-gpu/test.yml?logo=github">
98
<img src="https://img.shields.io/github/actions/workflow/status/Open-S2/s2maps-gpu/test.yml?logo=github" alt="GitHub Actions Workflow Status">
109
</a>

frameworks/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
4+
"allowImportingTsExtensions": false,
45
"target": "ESNext",
56
"lib": [
67
"DOM",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
/* Visit https://aka.ms/tsconfig.json to read more about this file */
4-
// "allowImportingTsExtensions": true,
4+
"allowImportingTsExtensions": true,
55

66
/* Projects */
77
// "incremental": true, /* Enable incremental compilation */

0 commit comments

Comments
 (0)