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