Skip to content

Commit

Permalink
Merge pull request #59 from pressbooks/github-action
Browse files Browse the repository at this point in the history
Replace TravisCI with GitHub Actions
  • Loading branch information
SteelWagstaff authored Jul 14, 2021
2 parents 6685b3b + 1a2d36f commit d0cc9c8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 32 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/.pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint Styles
on:
push:
branches: [ dev, main ]
tags:
- '*.*.*'
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14' ]

name: Node ${{ matrix.node }}
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run install-build-tools
- run: npm test
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

0 comments on commit d0cc9c8

Please sign in to comment.