Skip to content

Commit

Permalink
Create npm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ODudek authored Oct 15, 2023
1 parent fe5471a commit f704c3a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Node.js CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: npm ci
- run: npm run storybook:build
- run: npm test
- run: npm run prepublishOnly

0 comments on commit f704c3a

Please sign in to comment.