Skip to content

⬆️ Update all non-major dependencies #3498

⬆️ Update all non-major dependencies

⬆️ Update all non-major dependencies #3498

Workflow file for this run

name: tests
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "16.x"
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
env:
CI: TRUE
- name: Build plugin
run: npm run build
- name: Run the tests
run: npm test
env:
CI: TRUE