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

Migrate CI from Travis to Github Actions #685

Merged
merged 23 commits into from Feb 11, 2021
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

migrate ci to github actions

  • Loading branch information
fcjr committed Feb 10, 2021
commit ec667f19765498319844cdccc3a3320e848e421b
@@ -0,0 +1,29 @@
name: Lint & Test

on:
pull_request:
types: [opened, edited, reopened, ready_for_review]
branches:
- master
- develop

jobs:
check-pr-title-format:
runs-on: ubuntu-20.04
- uses: actions/setup-node@v2
with:
node-version: '10'
steps:
- name: Install Dependencies
run: |
yarn install --frozen-lockfile
- name: Build Licenses
run: |
node ./tools/licenses/fetchLicenses.js
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test

This file was deleted.

ProTip! Use n and p to navigate between commits in a pull request.