Skip to content

chore(deps): bump autoprefixer from 10.4.17 to 10.4.19 #67

chore(deps): bump autoprefixer from 10.4.17 to 10.4.19

chore(deps): bump autoprefixer from 10.4.17 to 10.4.19 #67

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Test
run: yarn test
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint