fix: update frontend version in webapp package after publication (#1571) #2443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nango Integration Flows Compile | |
on: [push, pull_request] | |
concurrency: | |
group: flows-compile--${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
flow-compilation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install nango CLI | |
run: | | |
# Build, install CLI and verify it can run | |
npm install | |
npm run build -w @nangohq/node -w @nangohq/shared -w nango | |
npm install -g ./packages/cli | |
NANGO_CLI_UPGRADE_MODE=ignore nango version --debug | |
- name: Compile with Nango | |
run: | | |
set -e | |
cd integration-templates | |
for dir in */; do | |
if [[ "$dir" != "." && "$dir" != "integration-templates/" ]]; then | |
cd "$dir" | |
mkdir -p nango-integrations | |
find . -maxdepth 1 ! -name '.' ! -name 'nango-integrations' -exec mv -t nango-integrations {} + | |
cd nango-integrations | |
NANGO_CLI_UPGRADE_MODE=ignore nango compile | |
cd ../../ | |
fi | |
done |