Skip to content

Commit

Permalink
Merge pull request #11 from kdn0325/feature/npm-deploy-action
Browse files Browse the repository at this point in the history
chore: npm deploy ci
  • Loading branch information
kdn0325 authored Feb 20, 2024
2 parents 30f2559 + e9e9f6d commit a2af89b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/npm_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deployment

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- run: npm ci
- run: npm run build --if-present
- run: npm run deploy

0 comments on commit a2af89b

Please sign in to comment.