1
0
mirror of https://github.com/qntm/base65536 synced 2026-03-26 17:24:46 +01:00

Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot]
1ef6e737f4
Bump cypress from 7.7.0 to 8.3.1 (#47)
Bumps [cypress](https://github.com/cypress-io/cypress) from 7.7.0 to 8.3.1.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js)
- [Commits](https://github.com/cypress-io/cypress/compare/v7.7.0...v8.3.1)

---
updated-dependencies:
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-31 22:22:49 +01:00
qntm
adaeee7db9
Create workflow-1.yml 2021-08-31 22:18:51 +01:00
qntm
0ceb1433f2
Delete .travis.yml 2021-08-31 22:09:12 +01:00
qntm
8698dda991
Update dependabot.yml 2021-08-31 22:02:34 +01:00
4 changed files with 36 additions and 16 deletions

View File

@ -1,6 +1,11 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
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
View 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

View File

@ -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

View File

@ -35,7 +35,7 @@
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.8.4",
"base65536-test": "^1.1.2",
"cypress": "^7.0.1",
"cypress": "^8.3.1",
"express": "^4.17.1",
"glob": "^7.1.6",
"jest": "^27.0.3",