Skip to content

Commit

Permalink
add chapter8
Browse files Browse the repository at this point in the history
  • Loading branch information
fsubal committed Oct 15, 2023
1 parent f18bf70 commit 5dbfe24
Show file tree
Hide file tree
Showing 11 changed files with 347 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ charset = utf-8
# Sass(SCSS) - http://sass-lang.com/
# Stylus - https://learnboost.github.io/stylus/
# PostCSS - https://postcss.org/
[*.{css,scss,sass,styl,pcss}]
[*.{css,scss,sass,styl,less,pcss}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,21 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- run: npm ci
- run: npx run-s --print-label build:* 2> $GITHUB_WORKSPACE/build.stderr.log
- run: npx run-s --print-label test:* 2> $GITHUB_WORKSPACE/test.stderr.log

- run: |
npx sass src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/sass/ok.scss
! npx sass src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/sass/ng.scss
npx lessc src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/less/ok.less
! npx lessc src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/less/ng.less
npx stylus src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/sass/ok.styl
! npx stylus src/第8章_Tailwind_CSSを既存のプロジェクトに導入する/sass/ng.styl
- run: |
if grep "warn" $GITHUB_WORKSPACE/*.log; then
echo 'Looks like tailwind build has unexpected warnings'
Expand Down
Loading

0 comments on commit 5dbfe24

Please sign in to comment.