Skip to content

Commit

Permalink
ci: Added CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke committed May 4, 2021
1 parent dc252bf commit 0ef2cce
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on:
pull_request: {}
push:
branches:
- main
jobs:
release:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14

- name: Install dependencies
run: npm ci

- run: npm run build
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
run: npm ci

- run: npm run build
- run: npm pack

- name: Release
env:
Expand Down

0 comments on commit 0ef2cce

Please sign in to comment.