Bump @adobe/css-tools from 4.3.1 to 4.3.2 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Tests' | |
on: | |
pull_request: | |
types: [opened, synchronize] # `reopened` could work here too, but it sometimes fires at the same time as synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: 'Run Tests' | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm test |