Skip to content

Commit

Permalink
feat: disabling functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Desplandis committed Feb 14, 2025
1 parent a466a92 commit 33cfad3
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ jobs:
needs: unit-and-coverage-tests
runs-on: ubuntu-latest
steps:
- name: Wait for coveralls
run: sleep 10
- name: Close parallel build
uses: coverallsapp/github-action@v2
with:
Expand All @@ -134,27 +136,29 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Echoing
run: echo "functional-tests"

# Use specific Node.js version
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'

# Install packages
- name: Install packages
run: npm ci

# Download artifact from build
- name: Download itowns bundle
uses: actions/download-artifact@v4
with:
name: dist-itowns

- name: Run functional tests
run: npm run test-functional
# - uses: actions/checkout@v4
# - name: Use Node.js 22.x
# uses: actions/setup-node@v4
# with:
# node-version: 22.x
# cache: 'npm'

# # Install packages
# - name: Install packages
# run: npm ci

# # Download artifact from build
# - name: Download itowns bundle
# uses: actions/download-artifact@v4
# with:
# name: dist-itowns

# - name: Run functional tests
# run: npm run test-functional


# Publish NPM package
Expand Down

0 comments on commit 33cfad3

Please sign in to comment.