Skip to content

Commit 3f3293d

Browse files
authored
Merge pull request #874 from volodya-lombrozo/837-compilation-error-eoc
ci(#837): add GitHub Actions workflow for old version compatibility
2 parents 68ee04c + 874e159 commit 3f3293d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2022-2026 Objectionary.com
2+
# SPDX-License-Identifier: MIT
3+
---
4+
# yamllint disable rule:line-length
5+
name: grunt-for-an-old-fixed-version
6+
"on":
7+
push:
8+
branches:
9+
- master
10+
pull_request:
11+
branches:
12+
- master
13+
jobs:
14+
build:
15+
strategy:
16+
matrix:
17+
os: [ubuntu-24.04]
18+
java: [17]
19+
node: [18]
20+
runs-on: ${{ matrix.os }}
21+
steps:
22+
- uses: actions/checkout@v6
23+
- uses: actions/setup-node@v6
24+
with:
25+
node-version: ${{ matrix.node }}
26+
- uses: actions/setup-java@v5
27+
with:
28+
distribution: "zulu"
29+
java-version: ${{ matrix.java }}
30+
- run: npm install
31+
- run: echo '0.59.3' > eo-version.txt
32+
- run: echo '0.59.3' > home-tag.txt
33+
- run: npx grunt

0 commit comments

Comments
 (0)