chore: upload npm errors for failed pipeline

This commit is contained in:
Harttle
2023-03-20 00:41:06 +08:00
committed by Jun Yang
parent da93102c1c
commit 9d823937cc
7 changed files with 4830 additions and 8490 deletions
+8 -2
View File
@@ -1,7 +1,7 @@
name: Check
on: [push, pull_request]
jobs:
release:
check:
name: Check
runs-on: ubuntu-18.04
steps:
@@ -27,4 +27,10 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Performance
run: |
npm run perf:diff
npm run perf:diff
- name: Archive npm failure logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
+7 -1
View File
@@ -24,4 +24,10 @@ jobs:
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/public
folder: docs/public
- name: Archive npm failure logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
+7 -1
View File
@@ -29,4 +29,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
run: npx semantic-release
- name: Archive npm failure logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
+1
View File
@@ -63,6 +63,7 @@
<td align="center" valign="top" width="0%"><a href="https://github.com/prassie"><img src="https://avatars.githubusercontent.com/u/1357831?v=4?s=100" width="100px;" alt="prassie"/></a></td>
<td align="center" valign="top" width="0%"><a href="http://slavv.com/"><img src="https://avatars.githubusercontent.com/u/713329?v=4?s=100" width="100px;" alt="Slav Ivanov"/></a></td>
<td align="center" valign="top" width="0%"><a href="http://www.orgflow.io/"><img src="https://avatars.githubusercontent.com/u/3889090?v=4?s=100" width="100px;" alt="Daniel Rosenberg"/></a></td>
<td align="center" valign="top" width="0%"><a href="https://github.com/bobgubko"><img src="https://avatars.githubusercontent.com/u/733312?v=4?s=100" width="100px;" alt="bobgubko"/></a></td>
</tr>
</tbody>
</table>
+4805 -8484
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -9,7 +9,7 @@
"./dist/liquid.node.cjs.js": "./dist/liquid.browser.umd.js",
"./dist/liquid.node.esm.js": "./dist/liquid.browser.esm.js"
},
"types": "dist/index.d.ts",
"types": "dist/src/index.d.ts",
"engines": {
"node": ">=14"
},
+1 -1
View File
@@ -1,6 +1,6 @@
import * as sinon from 'sinon'
import { JSDOM } from 'jsdom'
import type { Liquid } from '../..'
import type { Liquid } from '../../src/liquid'
const LiquidUMD = require('../../dist/liquid.browser.umd.js').Liquid
describe('xhr', () => {