We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f327297 + 3a3d694 commit 6a59965Copy full SHA for 6a59965
2 files changed
.gitattributes
@@ -0,0 +1,2 @@
1
+# Enforce Unix newlines
2
+* text=auto eol=lf
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Setup NodeJs
18
uses: actions/setup-node@v2
19
with:
20
- node-version: "lts/*"
+ node-version: "18"
21
22
- name: Install Dependencies
23
run: yarn install --frozen-lockfile
@@ -35,17 +35,17 @@ jobs:
35
os:
36
- "ubuntu-latest"
37
node_version:
38
- - "12"
39
- "14"
40
- "16"
+ - "18"
41
42
steps:
43
- uses: actions/checkout@v1
44
45
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js ${{ matrix.node_version }}
46
uses: actions/setup-node@v1
47
48
- node-version: ${{ matrix.node-version }}
+ node-version: ${{ matrix.node_version }}
49
50
- name: yarn install
51
0 commit comments