Skip to content

Bump postcss from 8.4.24 to 8.4.31 in /playground (#107) #5

Bump postcss from 8.4.24 to 8.4.31 in /playground (#107)

Bump postcss from 8.4.24 to 8.4.31 in /playground (#107) #5

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
test:
name: JavaScript Test Action
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@master
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install --frozen-lockfile
- name: Run JavaScript Tests
run: yarn build
- name: Run JavaScript Tests
run: yarn test
- name: Lint
run: yarn lint