File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments