diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e270b00..a407488 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-20.04, windows-latest, macos-11] + platform: [ubuntu-20.04, windows-latest, macos-12] runs-on: ${{ matrix.platform }} steps: @@ -25,7 +25,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install Rust Stable diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 0b196eb..5594b42 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,7 +17,7 @@ jobs: - name: setup node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install Dependencies and Check Formatting @@ -57,7 +57,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install Linux Dependencies diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 380c2d3..1a8cfc1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install Rust Stable @@ -83,7 +83,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install NPM Dependencies @@ -105,7 +105,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-20.04, windows-latest, macos-11] + platform: [ubuntu-20.04, windows-latest, macos-12] runs-on: ${{ matrix.platform }} steps: # NOTE - there is technically a race condition here if multiple releases go out @@ -118,7 +118,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install Rust Stable @@ -166,7 +166,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install NPM Dependencies @@ -196,7 +196,7 @@ jobs: - name: setup node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: update release metadata and publish the release diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c949acd..a7f078f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,7 +21,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install NPM Dependencies diff --git a/.vscode/extensions.json b/.vscode/extensions.json index bdef820..26316f5 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["svelte.svelte-vscode"] + "recommendations": ["svelte.svelte-vscode", "rust-lang.rust-analyzer"] }