Skip to content

deps: bump the knapsack-packages group with 8 updates #164

deps: bump the knapsack-packages group with 8 updates

deps: bump the knapsack-packages group with 8 updates #164

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
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
if: ${{ github.actor != 'dependabot[bot]' }}
run: yarn auto shipit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}