diff --git a/.changeset/olive-laws-exercise.md b/.changeset/olive-laws-exercise.md new file mode 100644 index 000000000..237977209 --- /dev/null +++ b/.changeset/olive-laws-exercise.md @@ -0,0 +1,5 @@ +--- + +--- + +update release workflow diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 100a23a6e..0bf4c9ae6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,7 @@ jobs: build: name: Build and Test timeout-minutes: 15 - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest, macos-latest] + runs-on: ubuntu-latest steps: - name: Check out code @@ -28,7 +24,7 @@ jobs: with: fetch-depth: 2 - - name: Setup Node.js ${{ matrix.node-version }} + - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32a418ea0..7dd5d0ead 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,11 @@ env: TAMAGUI_TARGET: 'web' jobs: + ci: + # https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow + uses: ./.github/workflows/ci.yml release: + needs: ci runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -23,9 +27,6 @@ jobs: node-version: 18 - run: yarn install --frozen-lockfile - run: yarn build - - run: yarn typecheck - - run: yarn lint && yarn format --check - - run: yarn test - uses: changesets/action@v1 id: changesets with: diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 5927e919a..279750f42 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -6,6 +6,7 @@ "ms-vscode.hexeditor", "mikestead.dotenv", "bradlc.vscode-tailwindcss", - "vitest.explorer" + "vitest.explorer", + "github.vscode-github-actions" ] }