mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
test action refactored to separate steps
This commit is contained in:
parent
22f629d592
commit
b3b1a3671a
1 changed files with 6 additions and 2 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -18,7 +18,11 @@ jobs:
|
|||
name: Setup Node
|
||||
with:
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
- name: Test
|
||||
run: yarn install && yarn test && yarn lint
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Test
|
||||
run: yarn test
|
||||
- name: Lint
|
||||
run: yarn lint
|
||||
|
|
|
|||
Loading…
Reference in a new issue