Skip to content

Commit 7b112d1

Browse files
author
Esen Sagynov
committed
Use Node v18 and v20 for build. Versions 14 and 16 are EOL as of 2024.
1 parent 1b94339 commit 7b112d1

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node: ["14", "16"]
16+
node: ["18", "20"]
1717
name: Node ${{ matrix.node }} build
1818
steps:
1919
- uses: actions/checkout@v2

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,17 @@ We welcome community contributions and pull requests.
5151

5252
1. Install Docker which is required for some of the packages.
5353

54-
1. Install Node dependencies.
54+
1. Install Node dependencies. This also automatically builds the packages.
5555

56-
yarn install
56+
yarn install --frozen-lockfile
5757

58-
1.
58+
1. Run tests.
59+
60+
npm test
61+
62+
1. Run linting.
63+
64+
npm run lint
5965

6066
## License
6167

0 commit comments

Comments
 (0)