Skip to content

Commit

Permalink
fix(ci): updated action versions and fixed ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Jan 31, 2024
1 parent ccf0fac commit 3043c2a
Show file tree
Hide file tree
Showing 13 changed files with 3 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: npm it
run: npm it
1 change: 0 additions & 1 deletion examples/cli/migrations/1316027432511-add-pets.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('./db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion examples/cli/migrations/1316027432512-add-jane.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('./db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion examples/cli/migrations/1316027432575-add-owners.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('./db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion examples/cli/migrations/1316027433425-coolest-pet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('./db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion examples/cli/migrations/db.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

// bad example, but you get the point ;)

// $ npm install redis
Expand Down
1 change: 0 additions & 1 deletion examples/migrate.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

// bad example, but you get the point ;)

// $ npm install redis
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/basic/1-add-guy-ferrets.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.description = 'Adds two pets'
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/basic/2-add-girl-ferrets.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/basic/3-add-emails.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/issue-33/1-migration.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/issue-33/2-migration.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.up = function (next) {
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/issue-33/3-migration.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const db = require('../../util/db')

exports.up = function (next) {
Expand Down

0 comments on commit 3043c2a

Please sign in to comment.