Skip to content

Commit

Permalink
Merge pull request #87 from ciatph/dev
Browse files Browse the repository at this point in the history
v1.3.2
  • Loading branch information
ciatph authored Aug 27, 2024
2 parents 9670613 + e2b227f commit 0584f6a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
33 changes: 32 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,40 @@ on:
types: [published]

jobs:
test-app:
name: Lint and Test App
runs-on: ubuntu-latest
env:
EXCEL_FILE_URL: ${{ secrets.EXCEL_FILE_URL }}
SHEETJS_COLUMN: ${{ secrets.SHEETJS_COLUMN }}
SORT_ALPHABETICAL: ${{ secrets.SORT_ALPHABETICAL }}
SPECIAL_CHARACTERS: ${{ secrets.SPECIAL_CHARACTERS }}
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}
- name: Use NodeJS v16.14.2
uses: actions/setup-node@v3
with:
node-version: 16.14.2
- name: Install Dependencies
run: |
cd app
npm install
- name: Lint App
run: |
cd app
npm run lint
- name: Test App
run: |
cd app
npm test
build-on-win:
name: Lint and Package App
name: Build and Package App
runs-on: windows-latest
needs: test-app
steps:
- name: Checkout the repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ph-municipalities",
"version": "1.3.1",
"version": "1.3.2",
"description": "List and write the `municipalities` of Philippines provinces or regions into JSON files",
"main": "index.js",
"engines": {
Expand Down

0 comments on commit 0584f6a

Please sign in to comment.