-
Notifications
You must be signed in to change notification settings - Fork 98
33 lines (33 loc) · 784 Bytes
/
grunt.yml
File metadata and controls
33 lines (33 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-FileCopyrightText: Copyright (c) 2015-2026 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: grunt
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
grunt:
timeout-minutes: 15
strategy:
matrix:
os: [windows-2022, ubuntu-24.04, macos-15]
java: [17]
node: [16]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14.2"
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- run: pip install --upgrade setuptools
- run: npm install
- run: npm install --force -g grunt-cli
- run: grunt