Skip to content

Commit

Permalink
chore(): update node,js
Browse files Browse the repository at this point in the history
  • Loading branch information
chyzwar committed Mar 27, 2023
1 parent 290cccc commit 9dace98
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml → .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
name: Build

on: [push]
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@project/root",
"version": "1.0.0",
"engines": {
"node": "16.x",
"node": "18.x",
"yarn": "3.x"
},
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/admin-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x",
"node": "18.x",
"yarn": "3.x"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "API",
"type": "module",
"engines": {
"node": "16.x",
"node": "18.x",
"yarn": "3.x"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "Shared types",
"engines": {
"node": "16.x",
"node": "18.x",
"yarn": "3.x"
},
"main": "./build",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"engines": {
"node": "16.x",
"node": "18.x",
"yarn": "3.x.x"
},
"dependencies": {
Expand Down

0 comments on commit 9dace98

Please sign in to comment.