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
10 changes: 7 additions & 3 deletions .github/workflows/checkout-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,25 @@ name: Checkout and lint
on:
workflow_dispatch

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies and run lint
run: npm run build:dev:ci
- run: npm run lint
10 changes: 7 additions & 3 deletions .github/workflows/checkout-install-dep-build-dev-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,20 @@ on:
- main
- 'release/**'

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: "finnp/create-file-action@master"
env:
FILE_NAME: "constellation/lib_asset.json"
Expand All @@ -37,9 +40,10 @@ jobs:
FILE_NAME: "constellation/constellation-core.placeholder.js"
FILE_DATA: "// placeholder for constellaiton-core.js"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm run build:dev:ci
- name: Run build:dev
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/github-actions-demo.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/mend-scan.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/playwright.yml

This file was deleted.

Loading