Skip to content

Commit

Permalink
feat: #9 add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lumio committed Jan 12, 2021
1 parent 7f2c394 commit 5bd92d2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Publish

on: push
# release:
# types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build

0 comments on commit 5bd92d2

Please sign in to comment.