Skip to content

Commit

Permalink
Merge pull request #98 from Netcentric/feature/#97-add-install-test
Browse files Browse the repository at this point in the history
#97 add npm i test for windows
  • Loading branch information
FelipeSimoes authored Oct 9, 2023
2 parents 8054cef + 58c966f commit 5e7bc7b
Show file tree
Hide file tree
Showing 5 changed files with 276 additions and 241 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,22 @@ jobs:
run: npm run build --if-present
- name: Run Tests
run: npm test --if-present

install:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]

steps:
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Init npm
run: npm init -y
- name: Install package
run: npm i @netcentric/fe-build
5 changes: 5 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Start by filing an issue. The existing committers on this project work to reach
consensus around project direction and issue solutions within issue threads
(when appropriate).

## getting started

Start by running the follow commands to add hooks to git
```mkdir -p .git && mkdir -p .git/hooks && cp ./hooks/pre-commit ./.git/hooks/pre-commit```

## Automated Release

### Release
Expand Down
Loading

0 comments on commit 5e7bc7b

Please sign in to comment.