Skip to content

Commit

Permalink
add build workflow and update scripts (#98)
Browse files Browse the repository at this point in the history
* add build workflow and update scripts

* fixup: [spec] `npm run build`
  • Loading branch information
romulocintra authored Jan 30, 2024
1 parent 7ed83e4 commit 9dd29f1
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 722 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Deploy spec

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm run build
- name: commit changes
uses: elstudio/actions-js-build/commit@v3
with:
commitMessage: "fixup: [spec] `npm run build`"
Loading

0 comments on commit 9dd29f1

Please sign in to comment.