From 2c8130be56ef353bd9bdbb23f519b21d149bcb6a Mon Sep 17 00:00:00 2001 From: LuisFerLCC Date: Sun, 8 Oct 2023 23:03:09 -0600 Subject: [PATCH] GitHub Actions --- .github/workflows/publishExtension.yml | 11 ++++++++--- .github/workflows/syncLabels.yml | 4 ++-- .vscode/extensions.json | 1 - 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publishExtension.yml b/.github/workflows/publishExtension.yml index cb43af9..b03b439 100644 --- a/.github/workflows/publishExtension.yml +++ b/.github/workflows/publishExtension.yml @@ -15,13 +15,18 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + + - name: Setup Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest - name: Install dependencies - run: npm ci + run: bun i --frozen-lockfile - name: Build - run: npm run build + run: bun run build - name: Upload dist artifact uses: actions/upload-artifact@v3 diff --git a/.github/workflows/syncLabels.yml b/.github/workflows/syncLabels.yml index 7759b04..33e94c3 100644 --- a/.github/workflows/syncLabels.yml +++ b/.github/workflows/syncLabels.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Sync with GitHub Labeler - uses: crazy-max/ghaction-github-labeler@v4 + uses: crazy-max/ghaction-github-labeler@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 79d2d65..e919c4d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -7,7 +7,6 @@ "eamodio.gitlens", "esbenp.prettier-vscode", "redhat.vscode-yaml", - "idered.npm", "streetsidesoftware.code-spell-checker" ] }