Bump @adobe/css-tools from 4.0.1 to 4.3.2 #48
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
# GitHub Actionsによる自動テスト設定。 | |
# pushされたタイミングで自動テストを流す。 | |
name: Test | |
on: | |
push: | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
- run: npm install | |
- run: npm test -- --browsers=ChromeHeadless --watch=false | |
- run: npm run lint |