Skip to content

Commit

Permalink
Merge pull request #12 from nishantapps/npmnishantsharma-patch-5
Browse files Browse the repository at this point in the history
Create npm_ci.yml
  • Loading branch information
Nishant Sharma committed Nov 1, 2023
2 parents c24b0a6 + fdbf178 commit 48c68fa
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/npm_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node.js CI

on:
push:
branches: [master]
paths-ignore:
- README.md
- .github/**
- locales/**
- sounds/**
- package.json
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.11.0
uses: actions/setup-node@v3
with:
node-version: "16.11.0"
cache: "npm"
- run: npm ci
- run: npm run build --if-present

0 comments on commit 48c68fa

Please sign in to comment.