Skip to content

Commit

Permalink
Set Node version to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
CatChen committed Apr 10, 2022
1 parent cbcfc50 commit edacc5d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ 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"

- 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 edacc5d

Please sign in to comment.