Skip to content

build(deps-dev): bump @adobe/css-tools from 4.0.1 to 4.3.2 #261

build(deps-dev): bump @adobe/css-tools from 4.0.1 to 4.3.2

build(deps-dev): bump @adobe/css-tools from 4.0.1 to 4.3.2 #261

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: test
on:
push:
branches: [master, next]
pull_request:
branches: [master, next]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your ob can access it
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm ci
- run: npm test