lossless-cut/.github/workflows/test.yml

29 wiersze
540 B
YAML
Czysty Zwykły widok Historia

2021-02-09 11:08:00 +00:00
name: Test
2021-02-03 17:03:51 +00:00
2021-02-09 11:08:00 +00:00
on: [push, pull_request]
2021-02-03 17:03:51 +00:00
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
2021-02-03 17:03:51 +00:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
2021-02-03 17:03:51 +00:00
steps:
2024-04-01 12:58:59 +00:00
# Windows fix. See https://github.com/actions/checkout/issues/226
- run: git config --global core.autocrlf false
2021-02-03 17:03:51 +00:00
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2023-08-21 11:09:07 +00:00
node-version: 18
2021-11-14 13:55:12 +00:00
cache: 'yarn'
2021-02-03 17:03:51 +00:00
- run: yarn
2024-01-02 15:45:43 +00:00
- run: yarn test
- run: yarn tsc
2024-02-12 06:11:44 +00:00
- run: yarn lint