Skip to content

Commit f2e8edb

Browse files
authored
fix: bump @actions/* SDKs & rebuild plugins (#535)
1 parent 1c86dd7 commit f2e8edb

File tree

8 files changed

+9062
-2808
lines changed

8 files changed

+9062
-2808
lines changed

.eslintrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"plugin:import/errors",
1010
"plugin:import/warnings",
1111
"plugin:import/typescript",
12-
"plugin:prettier/recommended",
13-
"prettier/@typescript-eslint"
12+
"plugin:prettier/recommended"
1413
],
1514
"plugins": ["@typescript-eslint"],
1615
"rules": {

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os:
15-
- macos-latest
16-
- ubuntu-latest
14+
os: ["macos-latest", "ubuntu-latest"]
1715

1816
runs-on: ${{ matrix.os }}
1917

@@ -27,13 +25,14 @@ jobs:
2725
uses: actions/cache@v3
2826
with:
2927
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
30-
key: v1-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
28+
key:
29+
v1-${{ runner.os }}-yarn-${{ hashFiles('package.json') }}-${{
30+
hashFiles('yarn.lock') }}
3131
restore-keys: |
32-
v1-${{ runner.os }}-yarn-
32+
v1-${{ runner.os }}-yarn-${{ hashFiles('package.json') }}-${{ hashFiles('yarn.lock') }}
3333
- name: Install npm packages
3434
run: yarn --frozen-lockfile
3535
- name: Ensure out directories are up-to-date
36-
if: runner.os == 'Linux'
3736
shell: bash
3837
run: |
3938
yarn build

0 commit comments

Comments
 (0)