Skip to content

Bump rimraf from 3.0.2 to 6.0.1 #2

Bump rimraf from 3.0.2 to 6.0.1

Bump rimraf from 3.0.2 to 6.0.1 #2

Workflow file for this run

on:
pull_request:
push:
branches:
- main
jobs:
setup:
name: Setup Node
runs-on: ubuntu-latest
steps:
- name: Get Latest
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/checkout@v4
- name: Restore Dependency Cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.OS }}-dependencies-cache-${{ hashFiles('**/package.json') }}
build:
name: Build Package
runs-on: ubuntu-latest
needs:
- setup
steps:
- uses: actions/checkout@v4
- name: Restore Dependency Cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.OS }}-dependencies-cache-${{ hashFiles('**/package.json') }}
- run: npm install
- run: npm run build