Skip to content

Bump postcss from 8.4.16 to 8.4.34 #26

Bump postcss from 8.4.16 to 8.4.34

Bump postcss from 8.4.16 to 8.4.34 #26

Workflow file for this run

name: saber-interface
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
saber-interface:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- name: Install Yarn dependencies
run: yarn install
- run: yarn typecheck
- run: yarn lint