mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +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
|
name: Setup Node
|
||||||
with:
|
with:
|
||||||
registry-url: 'https://npm.pkg.github.com'
|
registry-url: 'https://npm.pkg.github.com'
|
||||||
- name: Test
|
- name: Install dependencies
|
||||||
run: yarn install && yarn test && yarn lint
|
run: yarn install
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Test
|
||||||
|
run: yarn test
|
||||||
|
- name: Lint
|
||||||
|
run: yarn lint
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue