1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00
lossless-cut/.github/workflows/test.yml
Mikael Finstad 79de13fd83
upgrade
2024-07-29 11:26:19 +02:00

30 lines
593 B
YAML

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
# Windows fix. See https://github.com/actions/checkout/issues/226
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn dedupe --check
- run: yarn test
- run: yarn tsc
- run: yarn lint