commit cdc713bfe4ec73795678a7d1290aa1299ef673c2
parent e1d51cfd6ad3ad2b93dec3e9112c682e0a901d20
Author: Gavin Rehkemper <gavinr@users.noreply.github.com>
Date: Sun, 7 Feb 2021 20:53:55 -0600
chore(ci): use GitHub Actions instead of travis
Diffstat:
3 files changed, 22 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
@@ -0,0 +1,14 @@
+name: Test
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ - run: npm ci
+ - run: npm run build --if-present
+ - run: npm test
diff --git a/.travis.yml b/.travis.yml
@@ -1,11 +0,0 @@
-language: node_js
-
-node_js:
- - node
- - lts/*
-
-install:
- - npm install
-
-before_script:
- - npm test
diff --git a/RELEASE.md b/RELEASE.md
@@ -0,0 +1,7 @@
+# Release
+
+Releases are automated via semantic-release.
+
+Please follow [these commit guidelines](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines).
+
+If a PR does not follow those guidelines, the person merging the PR should Squash and merge, updating the merge commit to follow those guidelines.+
\ No newline at end of file