Skip to content

Commit

Permalink
chore(ci): sync lockfile with pnpm i (#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Jul 2, 2023
1 parent 2b262b5 commit c046644
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 78 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: release

on:
workflow_dispatch:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18

- run: npm i -g pnpm ovsx
- run: pnpm install --frozen-lockfile --no-optional
- run: pnpm run build:minify && pnpm ovsx publish
working-directory: packages/vscode-vue
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}
name: release

on:
workflow_dispatch:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18

- run: npm i -g pnpm ovsx
- run: pnpm install --frozen-lockfile --no-optional
- run: pnpm run build:minify && pnpm ovsx publish
working-directory: packages/vscode-vue
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}
54 changes: 27 additions & 27 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: testing

on: [push, pull_request]

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

strategy:
matrix:
node-version: [16.x]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v2

# install node
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

# install pnpm
- run: npm i -g pnpm
- run: pnpm install --frozen-lockfile --no-optional
- run: pnpm run build-ci
- run: pnpm run test
name: testing

on: [push, pull_request]

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

strategy:
matrix:
node-version: [16.x]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v2

# install node
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

# install pnpm
- run: npm i -g pnpm
- run: pnpm install --frozen-lockfile --no-optional
- run: pnpm run build-ci
- run: pnpm run test
44 changes: 17 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c046644

Please sign in to comment.