Skip to content

chore(deps): bump @adobe/css-tools from 4.0.1 to 4.3.3 #68

chore(deps): bump @adobe/css-tools from 4.0.1 to 4.3.3

chore(deps): bump @adobe/css-tools from 4.0.1 to 4.3.3 #68

Workflow file for this run

on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
name: CI
jobs:
install-deps:
name: Install dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Install locked dependencies
run: yarn install --frozen-lockfile
- name: Cache dependencies
uses: actions/cache@v1
id: cache-deps
with:
path: '.'
key: ${{ github.sha }}
lint:
name: ESLint
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Restore cached dependencies
uses: actions/cache@v1
id: restore-deps
with:
path: '.'
key: ${{ github.sha }}
- name: Setup Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Lint files
run: yarn run lint
env:
CI: true
type-check:
name: Type check
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Restore cached dependencies
uses: actions/cache@v1
id: restore-deps
with:
path: '.'
key: ${{ github.sha }}
- name: Setup Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Perform type checking
run: yarn run type-check
env:
CI: true
test:
name: Unit and integration tests
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Restore cached dependencies
uses: actions/cache@v1
id: restore-deps
with:
path: '.'
key: ${{ github.sha }}
- name: Setup Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Run Jest
run: yarn run test
env:
CI: true