diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-03-18 11:29:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-18 11:29:45 +0900 |
commit | e7a6f0354b8c38046e449566a371e366ef6b6889 (patch) | |
tree | cd3b2b7d30b8dac0ecbd4ebc91b9d1da8da36819 /.github/workflows/ci.yml | |
parent | 0314a8620f952aa5b0129e93f2d0956b0e0cc7c2 (diff) | |
parent | 1dd47d0876833c1d61572577ae5b9d2215578c07 (diff) |
Merge pull request #92 from themoeway/cd
Add CD to build and publish extension to Chrome & Firefox stores
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 |