Skip to content

Commit 5cf0fbe

Browse files
committed
fix(ci): updated action versions and fixed ci
1 parent ccf0fac commit 5cf0fbe

File tree

13 files changed

+3
-15
lines changed

13 files changed

+3
-15
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
matrix:
88
node-version: [14.x, 16.x, 18.x, 20.x]
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- name: Use Node.js ${{ matrix.node-version }}
12-
uses: actions/setup-node@v1
12+
uses: actions/setup-node@v4
1313
with:
1414
node-version: ${{ matrix.node-version }}
1515
- name: npm install and test
16-
run: npm it
16+
run: npm it

examples/cli/migrations/1316027432511-add-pets.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('./db')
32

43
exports.up = function (next) {

examples/cli/migrations/1316027432512-add-jane.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('./db')
32

43
exports.up = function (next) {

examples/cli/migrations/1316027432575-add-owners.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('./db')
32

43
exports.up = function (next) {

examples/cli/migrations/1316027433425-coolest-pet.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('./db')
32

43
exports.up = function (next) {

examples/cli/migrations/db.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// bad example, but you get the point ;)
32

43
// $ npm install redis

examples/migrate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// bad example, but you get the point ;)
32

43
// $ npm install redis

test/fixtures/basic/1-add-guy-ferrets.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('../../util/db')
32

43
exports.description = 'Adds two pets'

test/fixtures/basic/2-add-girl-ferrets.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('../../util/db')
32

43
exports.up = function (next) {

test/fixtures/basic/3-add-emails.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const db = require('../../util/db')
32

43
exports.up = function (next) {

0 commit comments

Comments
 (0)