diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-03-11 21:17:55 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-03-18 10:45:57 +0900 |
commit | 06251f190b9d04a5ef60480e218a7c5d6ffe9be4 (patch) | |
tree | 202c4cb0eca1c0ee6dd13a5fe65dddae49c3919e /.github/workflows/ci.yml | |
parent | 0314a8620f952aa5b0129e93f2d0956b0e0cc7c2 (diff) |
Add CD to build and publish extension to Chrome & Firefox stores
Resolves #85.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99f3f518..3b7fc69c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,9 +14,9 @@ jobs: uses: actions/checkout@v3 - name: Setup node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: "16.x" + node-version-file: ".node-version" - name: Install dependencies run: npm ci |