From 476b2d215e5114e03261fbf230cd9181849023a5 Mon Sep 17 00:00:00 2001 From: Copybara Bot Date: Wed, 19 Apr 2023 00:42:42 -0700 Subject: [PATCH] Project import generated by Copybara. GitOrigin-RevId: 31f6054c89f2e5de272cc3714b736d007ade7cea --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/common.ts | 2 +- static/manifest.json | 2 +- 5 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..93d7498 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI +on: + push: + branches: + - main + pull_request: +concurrency: + group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name != 'main' || github.sha }} + cancel-in-progress: true +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha || github.sha }} + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm install + - run: npm run build diff --git a/package-lock.json b/package-lock.json index aea0fec..d72db2b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "chrome-extension-webpack", - "version": "1.2.4", + "version": "1.2.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "chrome-extension-webpack", - "version": "1.2.4", + "version": "1.2.5", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 615f4fa..652f8ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chrome-extension-webpack", - "version": "1.2.4", + "version": "1.2.5", "description": "Get started with Chrome extensions development using webpack, Typescript, Sass, and more", "scripts": { "generate": "rm -rf ./proto && node generate.js", diff --git a/src/common.ts b/src/common.ts index acd04a7..97ab4e1 100644 --- a/src/common.ts +++ b/src/common.ts @@ -13,7 +13,7 @@ import { } from '../proto/exa/language_server_pb/language_server_pb'; const EXTENSION_NAME = 'chrome'; -const EXTENSION_VERSION = '1.2.4'; +const EXTENSION_VERSION = '1.2.5'; const BASE_URL = 'https://server.codeium.com'; export const CODEIUM_DEBUG = false; diff --git a/static/manifest.json b/static/manifest.json index f977a89..697f0e8 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1,7 +1,7 @@ { "name": "Codeium", "description": "Your modern coding superpower. Get code completions in Colab and more.", - "version": "1.2.4", + "version": "1.2.5", "manifest_version": 3, "background": { "service_worker": "serviceWorker.js"