Skip to content

Commit

Permalink
Merge pull request #5 from lunapaint/tga_hint
Browse files Browse the repository at this point in the history
Add image type hint for uncompressed or rle compression
  • Loading branch information
Tyriar authored Aug 6, 2023
2 parents 3667a34 + f0b7bab commit c1e8c5e
Show file tree
Hide file tree
Showing 6 changed files with 3,749 additions and 33 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand All @@ -13,19 +13,21 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- name: Sync submodules
run: git submodule update --init --recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install node dependencies
run: yarn
run: npm ci
- name: Build
run: yarn build
run: npm run build
- name: Lint
run: yarn lint
run: npm run lint
- name: Unit tests
run: yarn test
run: npm run test
Loading

0 comments on commit c1e8c5e

Please sign in to comment.