mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-22 02:12:30 +01:00
b1f611099c
(cherry picked from commit e696da74b8
)
21 lines
318 B
YAML
21 lines
318 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 18
|
|
cache: 'yarn'
|
|
|
|
- run: yarn
|
|
- run: npm run lint
|
|
- run: npm test
|