Skip to content

chore(deps): bump @rollup/rollup-linux-x64-gnu from 4.22.5 to 4.23.0 #1585

chore(deps): bump @rollup/rollup-linux-x64-gnu from 4.22.5 to 4.23.0

chore(deps): bump @rollup/rollup-linux-x64-gnu from 4.22.5 to 4.23.0 #1585

Workflow file for this run

name: Node CI
on: [ pull_request ]
jobs:
test:
name: Lint, Typecheck and Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v4
- name: Setup Node.js 20 🧮
uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache Node.js modules 💾
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Lint code 💄
run: npm run lint
- name: Typecheck code 👓
run: npm run typecheck
- name: Test code ✅
run: npm run test
env:
CI: true