Skip to content

Commit

Permalink
Create npm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasleplus authored Aug 25, 2023
1 parent e63e882 commit 8b1c4e9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: "NPM Build"

on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:

permissions: {}

jobs:

check:
name: Build with NPM
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Build
run: npm run dist

0 comments on commit 8b1c4e9

Please sign in to comment.