Skip to content

chore: Configure Renovate #61

chore: Configure Renovate

chore: Configure Renovate #61

Workflow file for this run

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