chore: Configure Renovate #61
Workflow file for this run
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: Integration Test GitHub | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
# Official Node.js images. | |
- node:12 | |
- node:14 | |
- node:16 | |
# RHEL Node.js builds are icu_small without installing the | |
# optional nodejs-full-i18n rpm. | |
- registry.access.redhat.com/ubi8/nodejs-12 | |
- registry.access.redhat.com/ubi8/nodejs-14 | |
# - registry.access.redhat.com/ubi8/nodejs-16 | |
- node:12-slim | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: nodejs/full-icu-test | |
path: full-icu-test | |
- name: Install full-icu | |
run: docker run --rm -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} npm i --no-package-lock --unsafe-perm | |
- name: Test full-icu | |
run: docker run --rm -e NODE_ICU_DATA=. -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} node ./full-icu-test/test.js |