Skip to content

Commit

Permalink
ci: migrate to github actions (#62)
Browse files Browse the repository at this point in the history
* ci: migrate to github actions

* drop node 10 support
  • Loading branch information
IjzerenHein authored Aug 3, 2021
1 parent 7ac412b commit 8a22c73
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'

- run: yarn install --frozen-lockfile
- run: yarn test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2020 Hein Rutjes
Copyright (c) 2017-2021 Hein Rutjes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 8a22c73

Please sign in to comment.