Skip to content

Merge branch 'main' of https://github.com/TourConnect/ti2-fareharbor … #74

Merge branch 'main' of https://github.com/TourConnect/ti2-fareharbor …

Merge branch 'main' of https://github.com/TourConnect/ti2-fareharbor … #74

Workflow file for this run

name: Node.js Package
on:
workflow_dispatch:
push:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sed -i 's/"file:.*"/"latest"/' package.json
- name: install dependencies
run: npm i
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm run build --if-present
- run: npm test
env:
ti2_fareharbor_endpoint: 'https://demo.fareharbor.com/api/external/v1/companies'
ti2_fareharbor_appKey: ${{ secrets.FAREHARBOR_APPKEY }}
ti2_fareharbor_userKey: ${{ secrets.FAREHARBOR_USERKEY }}
ti2_fareharbor_jwtKey: 'Reliance-Overload4-Lyrics'
ti2_fareharbor_shortname: discoversydneycruises-api-testing
tag:
if: github.ref == 'refs/heads/main'
needs: build_and_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: tool3/bump@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
unrelated: true
branch: main
publish-npm:
if: github.ref == 'refs/heads/main'
needs: tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: sed -i 's/"file:.*"/"latest"/' package.json
- name: install dependencies
run: npm i
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}