Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump the npm group with 1 update #2

Merged
merged 8 commits into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci

on:
pull_request:
branches: ["*"]
push:
branches: ["*"]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
gyp:
strategy:
matrix:
os: [macos-13, ubuntu-22.04, windows-2022]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
- name: Use Node version defined in manifest
uses: volta-cli/action@v4
- name: Node.js version
run: node -v
- name: npm version
run: npm -v
- name: Install dependencies
run: npm ci
- name: Run selenium test suite
run: npm t
2 changes: 1 addition & 1 deletion index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function rebuild() {
child_process.exec(`node-gyp rebuild --nodedir=${path.resolve('node')}`);
}

async function main() {
export async function main() {

if (fs.existsSync(headersPath) === false) {
await downloadHeaders();
Expand Down
Loading
Loading