Skip to content

Commit

Permalink
Merge pull request #104 from socketsupply/fix_ci
Browse files Browse the repository at this point in the history
fix GH workflow
  • Loading branch information
chicoxyzzy authored Jan 12, 2023
2 parents e84d21e + 083e02d commit bfeee22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 5

strategy:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "15.0.0",
"description": "A component framework.",
"scripts": {
"ci:test:tape-run": "esbuild --bundle test/index.js | tape-run",
"lint": "standard .",
"test": "npm run build && standard && esbuild --bundle test/index.js | tape-run",
"test": "npm run build && npm run lint && npm run build:test | tape-run",
"ci:test:tape-run": "esbuild --bundle test/index.js | tape-run",
"test:open": "npm run build && esbuild --bundle test/index.js | tape-run --browser chrome --keep-open",
"build:base": "esbuild src/index.js --define:VERSION=\\\"$npm_package_version\\\" --outfile=index.js",
"build:minify": "esbuild index.js --keep-names --minify --outfile=dist/tonic.min.js",
Expand All @@ -19,7 +19,7 @@
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"esbuild": "^0.15.10",
"esbuild": "^0.16.17",
"standard": "17.0.0",
"tape-run": "^10.0.0",
"tapzero": "0.6.1",
Expand Down

0 comments on commit bfeee22

Please sign in to comment.