Skip to content

Commit

Permalink
Merge pull request #279 from google/rename-codeql
Browse files Browse the repository at this point in the history
Rename the codeql workflow
  • Loading branch information
brad4d authored Jan 18, 2023
2 parents 71bd351 + d89a8f0 commit 4ec06cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
File renamed without changes.
17 changes: 0 additions & 17 deletions build-scripts/version-match.js

This file was deleted.

5 changes: 3 additions & 2 deletions test/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ const compilerPackage = require('google-closure-compiler');
const Compiler = compilerPackage.compiler;
const packageInfo = require('../package.json');
const Semver = require('semver');
const compilerVersionMatch = require('../build-scripts/version-match');
const spawn = require('child_process').spawnSync;
require('mocha');

const compilerVersionMatch = /^Version: v(\d+)$/m;

process.on('unhandledRejection', e => { throw e; });

const assertError = new should.Assertion('compiler version');
assertError.params = {
operator: 'should be a semver parseabe',
operator: 'should be a semver parseable',
};
const isNightlyBuild = /^true|1$/i.test(process.env.COMPILER_NIGHTLY);

Expand Down

0 comments on commit 4ec06cf

Please sign in to comment.