Skip to content
Merged
Show file tree
Hide file tree
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
62 changes: 62 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
on:
push:
branches:
- main

pull_request:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm

# Working around https://github.com/npm/cli/issues/4828
# - run: npm ci
- run: npm install --no-package-lock

- name: Check formatting
run: npm run format:check

- name: Check syntax
run: npm run lint

- name: Run tests
run: npm test

- run: npm run build

publish:
runs-on: ubuntu-latest
if: github.event_name == 'release'
needs: build

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
registry-url: "https://registry.npmjs.org"

# Working around https://github.com/npm/cli/issues/4828
# - run: npm ci
- run: npm install --no-package-lock

- run: npm run build

- run: npm run npm:publish:dry-run

- run: npm run npm:publish
59 changes: 0 additions & 59 deletions .github/workflows/node.js.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
.idea
bin
node_modules
build/nightwatch
build/nightwatch
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ npm i @puremvc/puremvc-js-multicore-framework
* [React Native](https://en.wikipedia.org/wiki/React_Native)

## Status
Production - [Version 2.0.9](https://github.com/PureMVC/puremvc-js-multicore-framework/blob/master/VERSION)
Production - [Version 2.0.9](https://github.com/PureMVC/puremvc-js-multicore-framework/blob/main/VERSION)

#### Documentation
- https://jsdoc.app/about-commandline.html
Expand Down
5 changes: 3 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PureMVC MultiCore Framework for JavaScript
--------------------------------------------------------------------------
Release Date: 9/4/24
Release Date: 11/25/25
Platform: JavaScript
Version: 2
Revision: 0
Minor: 9
Minor: 10
Authors: Saad Shams <saad.shams@puremvc.org>
: David Foley <david.foley@puremvc.org>
: Cliff Hall <cliff.hall@puremvc.org>
Expand All @@ -19,3 +19,4 @@ Release Date: 9/4/24
2.0.7 - Finally? NPM bundling
2.0.8 - CI/CD Pipeline
2.0.9 - CI/CD Integrating Automated Tokens
2.0.10 -
Loading
Loading