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.
2 parents 7043c5d + c3f0cae commit 6c25d1aCopy full SHA for 6c25d1a
.github/workflows/release.yml
@@ -9,16 +9,19 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Install coffeescript-compiler
13
- run: sudo apt-get install coffeescript
14
-
15
- name: Checkout
16
uses: actions/checkout@v2
17
with:
18
submodules: recursive
19
20
- - name: Checkout submodules
21
- run: git submodule update --init --recursive
+ - name: Install Node.js and npm
+ uses: actions/setup-node@v3
+ with:
+ node-version: '14'
+ cache: 'npm'
22
+
23
+ - name: Install coffeescript
24
+ run: sudo npm install -g coffeescript@1.12.7
25
26
- name: Get the version
27
id: get_version
0 commit comments