Bump postcss from 8.4.24 to 8.4.31 #300
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test-node: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
node: [14, 16, 18, 'current'] | |
name: CI - Node ${{ matrix.node }} (${{ matrix.platform }}) | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Install npm latest | |
run: npm i -g npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run test:node | |
test-web: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
node: [14, 16, 18, 'current'] | |
name: CI - Node ${{ matrix.node }} (${{ matrix.platform }}) | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Install npm latest | |
run: npm i -g npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run test:web |