Bump postcss-custom-properties from 14.0.2 to 14.0.3 (#2408) #4514
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: '20.8.0' | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Run Prettier | |
run: yarn prettierlint | |
- name: Run ESLint | |
run: yarn eslint | |
- name: Run stylelint | |
run: yarn stylelint | |
- name: TypeScript | |
run: yarn tsc |