Skip to content

Commit

Permalink
Merge pull request projectfluent#320 from flodolo/gh_actions
Browse files Browse the repository at this point in the history
Move tests to GitHub actions
  • Loading branch information
zbraniecki authored Jan 7, 2021
2 parents 1478add + 046caa3 commit 0e04f67
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run tests

on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
- name: Run ci
run: |
npm install
npm run ci
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 0e04f67

Please sign in to comment.