Skip to content

Commit

Permalink
Modified line 55:57 of ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ertush committed Nov 18, 2024
1 parent 30158f8 commit e42e428
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node -e "console.log(process.cwd())"
- run: |
node -e """
const {exec} = require('node:child-process');
exec('ls . && pwd', (stdout) => {
console.log(`stdout: ${stdout}`)
})
"""
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm run build
Expand Down

0 comments on commit e42e428

Please sign in to comment.