X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/726c5a6d2c54f94714fa71cbd0d085f6fe537846..33ee9e3e73dfead56bd0a0067e35c3faad5b3404:/.github/workflows/ci.yml?ds=sidebyside diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f7a3c..a070852 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,11 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '10.x' + node-version: '18.x' - name: Install dependencies run: yarn install @@ -26,6 +26,10 @@ jobs: run: yarn build - name: Testing - run: | - yarn test - API_ON_SAME_PORT=1 yarn test + run: yarn test + + - name: Testing API_ON_SAME_PORT + run: API_ON_SAME_PORT=1 yarn test + + - name: Testing REVERSE_ONLY + run: REVERSE_ONLY=1 yarn test