mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
test action configured with github packages
This commit is contained in:
parent
fd592184a1
commit
cfdfd88522
1 changed files with 8 additions and 4 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
|
@ -13,8 +13,12 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
name: Checkout
|
||||
- uses: actions/setup-node@v1
|
||||
name: Setup Node
|
||||
with:
|
||||
registry-url: 'https://npm.pkg.github.com'
|
||||
- name: Test
|
||||
run: |
|
||||
echo -e "[url \"https://github.com/\"]\n\tinsteadOf = ssh://git@github.com/" > ~/.gitconfig
|
||||
yarn install && yarn test
|
||||
|
||||
run: yarn install && yarn test
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue