Skip to content

Commit

Permalink
WIP: Fastify v3 upgrade (#70)
Browse files Browse the repository at this point in the history
* Upgrade to Fastify v3

* Update .github/workflows/ci.yml

Co-Authored-By: Matteo Collina <matteo.collina@gmail.com>

* Code review comments

Co-authored-by: Thomas Heymann <thom@thoms-air.home>
Co-authored-by: Matteo Collina <matteo.collina@gmail.com>
  • Loading branch information
3 people authored May 1, 2020
1 parent 9123ed3 commit 306c0bb
Show file tree
Hide file tree
Showing 8 changed files with 276 additions and 272 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --ignore-scripts
- name: Test
run: npm test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ typings/
# dotenv environment variables file
.env

# lock files
package-lock.json
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 306c0bb

Please sign in to comment.