Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: migrate to GitHub Actions #1647

Merged
merged 8 commits into from
May 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: migrate to GitHub Actions
  • Loading branch information
stevenjoezhang committed May 2, 2021
commit 0977e9731c5ac73b446fb5533ead2ed27f437573
17 changes: 17 additions & 0 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Tester

on: [push, pull_request]

jobs:
tester:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
- name: Install Dependencies
run: npm install
- name: Lint
run: npm run eslint
- name: Test
run: npm run build
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.