feat(NODE-7166)!: increase napi version to 9 #118
Workflow file for this run
This file contains hidden or 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: Webpack | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 'lts/*' | |
- name: "Install dependencies" | |
shell: bash | |
run: | | |
npm install --ignore-scripts | |
- name: "Install necessary gssapi C++ dependencies" | |
shell: bash | |
run: | | |
apt-get -qq update && apt-get -qq install -y python3 build-essential libkrb5-dev && ldd --version | |
- name: "Install dependencies in the Webpack bundle test package" | |
shell: bash | |
working-directory: ./test/bundling/webpack | |
run: | | |
npm install | |
- name: "Install local kerberos into Webpack bundle test package" | |
shell: bash | |
working-directory: ./test/bundling/webpack | |
run: | | |
npm run install:kerberos | |
- name: "Run webpack build" | |
shell: bash | |
working-directory: ./test/bundling/webpack | |
run: | | |
npm run build |