Skip to content

Commit 6f77625

Browse files
whatever
1 parent a745b5a commit 6f77625

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,21 @@ jobs:
2121
CI: true
2222

2323
test:
24-
name: Test on ${{ matrix.os }}
25-
runs-on: ${{ matrix.os }}
26-
strategy:
27-
matrix:
28-
os: [ubuntu-latest, windows-latest]
24+
name: Test
25+
runs-on: ubuntu-latest
2926

3027
steps:
3128
- uses: actions/checkout@v2
32-
- name: Use Node.js 16.14.0
29+
- name: Use Node.js 22
3330
uses: actions/setup-node@v1
3431
with:
35-
node-version: 16.14.0
32+
node-version: 22
3633
- run: npm ci
3734
- run: npm run build
3835
- run: npx jest --maxWorkers 2 --coverage
3936
env:
4037
CI: true
41-
- if: matrix.os == 'ubuntu-latest'
38+
- name: whatever this is
4239
uses: codecov/codecov-action@v1
4340

4441
benchmark:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Use Node.js 16.14.0
14+
- name: Use Node.js 22
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 16.14.0
17+
node-version: 22
1818
registry-url: "https://registry.npmjs.org"
1919
- run: npm ci
2020
- run: npm run build

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thekidthatcodes/typescript-to-lua",
3-
"version": "1.26.2",
3+
"version": "1.26.3",
44
"description": "A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!",
55
"repository": "https://github.com/TheKidThatCodes/TypeScriptToLuaCC",
66
"homepage": "https://typescripttolua.github.io/",
@@ -46,7 +46,7 @@
4646
},
4747
"dependencies": {
4848
"@typescript-to-lua/language-extensions": "1.19.0",
49-
"enhanced-resolve": "^5.8.2",
49+
"enhanced-resolve": "^5.17.1",
5050
"picomatch": "^2.3.1",
5151
"resolve": "^1.15.1",
5252
"source-map": "^0.7.3"

0 commit comments

Comments
 (0)