Skip to content

Bump css-loader from 7.1.1 to 7.1.2 #432

Bump css-loader from 7.1.1 to 7.1.2

Bump css-loader from 7.1.1 to 7.1.2 #432

Workflow file for this run

name: Run tests
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install Mage
uses: magefile/mage-action@v3
with:
install-only: true
- name: Install dependencies
run: npm ci
- name: Build plugin
run: npm run build:all
- name: Run frontend tests
run: npm run test:ci
- name: Run backend tests
run: npm run backend:test