Skip to content

Commit

Permalink
Update the github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emilos committed May 14, 2024
1 parent 4963cde commit 0643ae6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:

strategy:
matrix:
node-version: [20.11.1]
version: [20.13.1]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.version }}
- name: npm install, build, and test
run: |
npm ci
npm test
npm run test:debug
env:
CI: true
2 changes: 1 addition & 1 deletion test/attributes/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { a } = require("boxwood")
const { a } = require("../..")

module.exports = () => {
return [a({ href: "/foo" }, "bar"), a({ href: "/baz" }), a("qux")]
Expand Down

0 comments on commit 0643ae6

Please sign in to comment.