Skip to content
Open
Changes from all 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
87 changes: 87 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: NodeJS with Webpack

on:
push:
branches: [ "mintme-integration" ]
pull_request:
branches: [ "mintme-integration" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
- name: Setup Node.js environment
uses: actions/setup-node@v6.5.0
with:
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0.
node-version: # optional
# File containing the version Spec of the version to use. Examples: package.json, .nvmrc, .node-version, .tool-versions.
node-version-file: # optional
# Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default.
architecture: # optional
# Set this option if you want the action to check for the latest available version that satisfies the version spec.
check-latest: # optional
# Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN.
registry-url: # optional
# Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).
scope: # optional
# Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
token: # optional, default is ${{ github.server_url == 'https://github.com' && github.token || '' }}
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.
cache: # optional
# Set to false to disable automatic caching. By default, caching is enabled when either devEngines.packageManager or the top-level packageManager field in package.json specifies npm as the package manager.
package-manager-cache: # optional, default is true
# Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.
cache-dependency-path: # optional
# Used to specify an alternative mirror to download Node.js binaries from
mirror: # optional
# The token used as Authorization header when fetching from the mirror
mirror-token: # optional
- name: RN Activity Monitor
# You may pin to the exact commit or the version.
# uses: react-native-community/repo-monitor@d58266a4f198b830ccaa495b853d251ad3aa8cc8
uses: react-native-community/repo-monitor@v1.0.1
with:
# Task to run (monitor-issues or monitor-prs).
task:
# GitHub token for authentication.
git_secret:
# Owner of the repository.
repo_owner:
# Name of the repository.
repo_name:
# How far back to fetch data (e.g., 1 hour, 24 hours).
fetch_data_interval:
# Notification method (slack or discord).
notifier:
# Slack bot token to send notifications.
slack_bot_token: # optional
# The Slack channel to send notifications to.
slack_channel: # optional
# Type of Slack ID (user or group).
slack_id_type: # optional
# Slack IDs of the recipients (user or group) must be comma separated and all must be of same type.
slack_ids: # optional
# Discord webhook URL to send notifications.
discord_webhook_url: # optional
# Type of Discord ID (user or role).
discord_id_type: # optional
# Discord IDs of the recipients (user or role) must be comma separated and all must be of same type.
discord_ids: # optional