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 e602393 commit 3f060adCopy full SHA for 3f060ad
.github/workflows/release.yml
@@ -10,22 +10,17 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout
13
- uses: actions/checkout@v4
+ uses: actions/checkout@v2
14
with:
15
submodules: recursive
16
17
- - name: Fix post run npm cleanup
18
- run: mkdir -p /home/runner/.npm; touch /home/runner/package-lock.json
19
- continue-on-error: true
20
-
21
- - uses: actions/setup-node@v3
+ - name: Install Node.js and npm
+ uses: actions/setup-node@v2
22
23
- node-version: 14
24
- cache: 'npm'
+ node-version: '14'
25
26
- - name: Install dependencies
27
- run: |
28
- sudo npm install -g coffeescript@1.12.7
+ - name: Install coffeescript
+ run: npm install -g coffeescript
29
30
- name: Get the version
31
id: get_version
0 commit comments