Skip to content

Commit 0fbdf50

Browse files
authored
fix: Making scripting-extra compatible with Tiled 1.9 (#163)
* Making scripting-extra compatible with Tiled 1.9 Reading the property "class" instead of "type" * Upgrading Node in CI
1 parent 4584a95 commit 0fbdf50

File tree

6 files changed

+18611
-108
lines changed

6 files changed

+18611
-108
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,10 @@ jobs:
1515
with:
1616
fetch-depth: 1
1717

18-
- uses: actions/setup-node@v1
18+
- uses: actions/setup-node@v3
1919
with:
20-
node-version: 12
21-
22-
- uses: actions/cache@v2
23-
with:
24-
path: ~/.npm
25-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
26-
restore-keys: |
27-
${{ runner.os }}-node-
20+
node-version: 16
21+
cache: 'npm'
2822

2923
- run: npm ci
3024
- run: npm run lint

.github/workflows/publish.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,10 @@ jobs:
1818
with:
1919
fetch-depth: 1
2020

21-
- uses: actions/setup-node@v1
21+
- uses: actions/setup-node@v3
2222
with:
23-
node-version: 12
24-
25-
- uses: actions/cache@v2
26-
with:
27-
path: ~/.npm
28-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29-
restore-keys: |
30-
${{ runner.os }}-node-
23+
node-version: 16
24+
cache: 'npm'
3125

3226
- run: npm ci
3327
- run: npm run lint

0 commit comments

Comments
 (0)