mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
28 lines
504 B
YAML
28 lines
504 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
tags-ignore:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
name: Checkout
|
|
- uses: actions/setup-node@v1
|
|
name: Setup Node
|
|
with:
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Test
|
|
run: yarn test
|
|
- name: Lint
|
|
run: yarn lint
|