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 af2a30f commit 2f54494Copy full SHA for 2f54494
.github/workflows/release.yml
@@ -9,16 +9,18 @@ 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@v2
+ with:
+ node-version: '14'
+
22
+ - name: Install coffeescript
23
+ run: npm install -g coffeescript
24
25
- name: Get the version
26
id: get_version
0 commit comments