Skip to content

fix(ci): remove npm install yarn #258

fix(ci): remove npm install yarn

fix(ci): remove npm install yarn #258

Workflow file for this run

name: test
on:
push:
branches:
- feat/ga
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: |
cd packages/ketchup
node scripts/k-npm-snapshot.js
cd ../ketchup-react
node scripts/kr-npm-snapshot.js
cd ../..
yarn install --no-immutable
npm run k:build
# - run: npm run publish:snapshot
# env:
# NODE_AUTH_TOKEN: {{ secrets.NPM_TOKEN }}