mirror of
https://github.com/qntm/base65536
synced 2026-03-26 17:24:46 +01:00
Compare commits
4 Commits
bc6f9a2b37
...
1ef6e737f4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1ef6e737f4 | ||
|
|
adaeee7db9 | ||
|
|
0ceb1433f2 | ||
|
|
8698dda991 |
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
@ -1,6 +1,11 @@
|
|||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "npm"
|
- package-ecosystem: 'npm'
|
||||||
directory: "/"
|
directory: '/'
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: 'monthly'
|
||||||
|
ignore:
|
||||||
|
- dependency-name: '*'
|
||||||
|
update-types:
|
||||||
|
- 'version-update:semver-minor'
|
||||||
|
- 'version-update:semver-patch'
|
||||||
|
|||||||
27
.github/workflows/workflow-1.yml
vendored
Normal file
27
.github/workflows/workflow-1.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: 'Travis CI replacement'
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-job:
|
||||||
|
runs-on: 'ubuntu-latest'
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: ['14.x', '16.x']
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: 'actions/checkout@v2'
|
||||||
|
|
||||||
|
- name: 'Use Node.js ${{ matrix.node-version }}'
|
||||||
|
uses: 'actions/setup-node@v1'
|
||||||
|
with:
|
||||||
|
node-version: '${{ matrix.node-version }}'
|
||||||
|
|
||||||
|
- name: 'Actual npm tasks'
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run test
|
||||||
12
.travis.yml
12
.travis.yml
@ -1,12 +0,0 @@
|
|||||||
language: node_js
|
|
||||||
node_js:
|
|
||||||
- 10
|
|
||||||
- 12
|
|
||||||
- 14
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- ~/.cache
|
|
||||||
script:
|
|
||||||
- npm run test
|
|
||||||
- npm run build
|
|
||||||
- npm run test-built
|
|
||||||
@ -35,7 +35,7 @@
|
|||||||
"@babel/node": "^7.10.5",
|
"@babel/node": "^7.10.5",
|
||||||
"@babel/preset-env": "^7.8.4",
|
"@babel/preset-env": "^7.8.4",
|
||||||
"base65536-test": "^1.1.2",
|
"base65536-test": "^1.1.2",
|
||||||
"cypress": "^7.0.1",
|
"cypress": "^8.3.1",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"glob": "^7.1.6",
|
"glob": "^7.1.6",
|
||||||
"jest": "^27.0.3",
|
"jest": "^27.0.3",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user