Skip to content

Commit

Permalink
Update node to 18.x in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich authored Jun 18, 2024
1 parent 8f444c1 commit 4258c50
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '15.x'
node-version: '18.x'
- run: npm ci # This will automatically build and run tests because the prepublish step is to run `gulp`
20 changes: 10 additions & 10 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { task, src, dest, series, parallel } from "gulp";
import mocha from "gulp-mocha";
import json2cson from "gulp-json2cson";
import yaml from "gulp-yaml";
import { createProject } from "gulp-typescript";
import { load } from "js-yaml";
import { build } from "plist";
import { readFileSync, existsSync, mkdirSync, writeFileSync } from "fs";
import { join } from "path";
import { exec } from "child_process";
const gulp = import("gulp");
const mocha = require("gulp-mocha");
const json2cson = require("gulp-json2cson");
const yaml = require("gulp-yaml");
const ts = require("gulp-typescript");
const js_yaml = require("js-yaml");
const plist = require("plist");
const fs = require("fs");
const path = require("path");
const exec = require("child_process").exec;

const inputGrammar = "src/csharp.tmLanguage.yml";
const grammarsDirectory = "grammars/";
Expand Down

0 comments on commit 4258c50

Please sign in to comment.