We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c6fde commit 3ee46faCopy full SHA for 3ee46fa
.github/workflows/workflow.yml
@@ -9,16 +9,21 @@ jobs:
9
matrix:
10
os: [ubuntu-latest, windows-latest]
11
steps:
12
- - uses: actions/checkout@master
+ - uses: actions/checkout@v4
13
+
14
+ - name: Install D compiler
15
+ uses: dlang-community/setup-dlang@v2
16
+ with:
17
+ compiler: dmd
18
19
- name: Start xvfb
20
if: startsWith(matrix.os, 'ubuntu')
21
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
-
- - name: Set Node.js 10.x
- uses: actions/setup-node@master
22
23
+ - name: Set Node.js
24
+ uses: actions/setup-node@v4
25
with:
- version: 10.x
26
+ node-version: lts/*
27
28
- name: npm install
29
run: npm install
0 commit comments