Skip to content

deps: bump @knapsack/app from 4.66.7 to 4.70.3 #112

deps: bump @knapsack/app from 4.66.7 to 4.70.3

deps: bump @knapsack/app from 4.66.7 to 4.70.3 #112

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
jobs:
build:
name: Build & Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Handle Cache
uses: actions/cache@v3
id: cache
with:
path: |
node_modules
**/node_modules
~/.cache/yarn
key: node-deps-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
yarn install --cache-folder ~/.cache/yarn --prefer-offline --frozen-lockfile
- name: Run Full Build
run: yarn build
- name: Run Knapsack Test
run: yarn test
- name: Release
run: yarn auto shipit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}