Skip to content

Commit

Permalink
fix: bump @actions/* SDKs & rebuild plugins (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthegedus committed Mar 15, 2023
1 parent 1c86dd7 commit f2e8edb
Show file tree
Hide file tree
Showing 8 changed files with 9,062 additions and 2,808 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint"],
"rules": {
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
os: ["macos-latest", "ubuntu-latest"]

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

Expand All @@ -27,13 +25,14 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: v1-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
key:
v1-${{ runner.os }}-yarn-${{ hashFiles('package.json') }}-${{
hashFiles('yarn.lock') }}
restore-keys: |
v1-${{ runner.os }}-yarn-
v1-${{ runner.os }}-yarn-${{ hashFiles('package.json') }}-${{ hashFiles('yarn.lock') }}
- name: Install npm packages
run: yarn --frozen-lockfile
- name: Ensure out directories are up-to-date
if: runner.os == 'Linux'
shell: bash
run: |
yarn build
Expand Down
Loading

0 comments on commit f2e8edb

Please sign in to comment.