diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be73378..7b320c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,9 +21,12 @@ jobs: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 + env: + PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true" with: node-version: ${{ matrix.node-version }} cache: "npm" - run: npm ci --force - run: npm run build --if-present - - run: npm test + - run: npm run test + diff --git a/LICENSE b/LICENSE index 3f361bc..71e53e5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 DynamoDS +Copyright (c) 2025 DynamoDS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/jest-puppeteer.config.js b/jest-puppeteer.config.js index ce87ae8..c44b268 100644 --- a/jest-puppeteer.config.js +++ b/jest-puppeteer.config.js @@ -7,6 +7,11 @@ module.exports = { launch: { headless: true, timeout: 30000, + args: [ + "--no-sandbox", + "--disable-setuid-sandbox", + "--disable-dev-shm-usage" + ] }, exitOnPageError: false }; diff --git a/license_output/about-box_direct.html b/license_output/about-box_direct.html index 0618ca6..e8c8c1b 100644 --- a/license_output/about-box_direct.html +++ b/license_output/about-box_direct.html @@ -1,7 +1,7 @@

- NotificationCenter © 2024 Autodesk, Inc. All rights reserved. + NotificationCenter © 2025 Autodesk, Inc. All rights reserved.

diff --git a/license_output/about-box_transitive.html b/license_output/about-box_transitive.html index 42bd65e..e2c8d20 100644 --- a/license_output/about-box_transitive.html +++ b/license_output/about-box_transitive.html @@ -1,7 +1,7 @@

- NotificationCenter © 2024 Autodesk, Inc. All rights reserved. + NotificationCenter © 2025 Autodesk, Inc. All rights reserved.

diff --git a/license_output/paos_direct.csv b/license_output/paos_direct.csv index c30f94b..ca124b7 100644 --- a/license_output/paos_direct.csv +++ b/license_output/paos_direct.csv @@ -1,4 +1,4 @@ publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed -"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false +"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false "",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false "",react,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false diff --git a/license_output/paos_transitive.csv b/license_output/paos_transitive.csv index fff9265..60fecc9 100644 --- a/license_output/paos_transitive.csv +++ b/license_output/paos_transitive.csv @@ -1,5 +1,5 @@ publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed -"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false +"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false "Simon Lydell",js-tokens,"4.0.0","Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell","","",MIT,false "Andres Suarez",loose-envify,"1.4.0","Copyright (c) 2015 Andres Suarez ","","",MIT,false "",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false diff --git a/package-lock.json b/package-lock.json index 5afac39..36b8ff1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dynamods/notifications-center", - "version": "0.0.31", + "version": "0.0.32", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@dynamods/notifications-center", - "version": "0.0.31", + "version": "0.0.32", "license": "MIT", "dependencies": { "react": "^18.2.0", diff --git a/package.json b/package.json index 703fb7e..ac23bbf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dynamods/notifications-center", - "version": "0.0.31", + "version": "0.0.32", "description": "Notification center maintained by Dynamo Team@Autodesk", "author": "Autodesk Inc.", "license": "MIT", @@ -18,7 +18,7 @@ "lint:fix": "eslint src/ tests/ --fix", "test:unit": "jest tests/unit", "test:e2e": "jest tests/e2e --coverage=false", - "test": "jest", + "test": "jest --no-sandbox", "start:dev": "webpack serve --config webpack.config.js --env dev", "start:staging": "webpack serve --config webpack.config.js --env staging", "start": "webpack serve --config webpack.config.js --env prod",