Skip to content

Bump postcss-loader from 7.3.0 to 7.3.3 #3356

Bump postcss-loader from 7.3.0 to 7.3.3

Bump postcss-loader from 7.3.0 to 7.3.3 #3356

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
pull_request:
branches: [main, next, ob/postgres-prisma-migration]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# enables use to use the cache in actions/setup-node
- uses: pnpm/action-setup@v2.2.2
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
# - name: Typecheck
# run: pnpm check
- name: Test
run: pnpm test