Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflow/actions-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: player-plugins CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: install node
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'yarn'

- name: install dependencies
run: yarn

- name: run lint
run: yarn lint

- name: run unit tests
run: yarn test

- name: coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.