Skip to content

Commit

Permalink
ci: switch to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 committed Aug 2, 2022
1 parent db1b0be commit 2340376
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 175 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches: [$default-branch]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'
- run: npm ci
- run: npm test
- uses: codecov/codecov-action@v3
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

150 changes: 0 additions & 150 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"test:watch": "ng test angular-resizable-element",
"lint": "ng lint",
"commit": "git-cz",
"codecov": "codecov",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin master",
Expand Down Expand Up @@ -67,7 +66,6 @@
"@typescript-eslint/parser": "^5.29.0",
"angular-cli-ghpages": "^1.0.3",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"concurrently": "^7.3.0",
"copyfiles": "^2.4.1",
Expand Down

0 comments on commit 2340376

Please sign in to comment.