Skip to content

Commit

Permalink
Set Node version to 16 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
CatChen authored Apr 10, 2022
1 parent cbcfc50 commit 86b6170
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
runs-on: ubuntu-latest

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

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: "16"
check-latest: true

- name: Install dependencies
run: yarn install
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/gallium
2 changes: 1 addition & 1 deletion validate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Ajv, { JSONSchemaType, DefinedError } from "ajv";
import type { Opening, Job, Company, JobsData } from "./index";
import data from "./data.json";
import data from "./data.json" assert { type: "json" };

const openingSchema: JSONSchemaType<Opening> = {
type: "object",
Expand Down

0 comments on commit 86b6170

Please sign in to comment.