Skip to content

Commit

Permalink
Merge branch 'main' into 3414-foundations-typography-heading-h1---h6
Browse files Browse the repository at this point in the history
  • Loading branch information
bashirkarimi committed Sep 23, 2024
2 parents ed0204d + 002520a commit 621c353
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ jobs:
- name: Setup
uses: ./.github/actions/setup-pnpm

# Install packages changed since main, as well as their dependants and dependencies
- name: Install dependencies
run: pnpm --filter "...[origin/main]" install
- name: Install dependencies and build packages
run: pnpm bootstrap

- name: Run unit tests
run: pnpm --filter "...[origin/main]" unit
19 changes: 11 additions & 8 deletions packages/styles/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,17 @@ gulp.task('sass:dev', () => {
/**
* Compile scss tests
*/
gulp.task('sass:tests', () => {
return gulp.src('./tests/**/*.scss').pipe(
gulpSass.sync({
includePaths: options.includePaths,
quietDeps: true,
}),
);
});
gulp.task(
'sass:tests',
gulp.series('temporarily-copy-token-files', () => {
return gulp.src('./tests/**/*.scss').pipe(
gulpSass.sync({
includePaths: options.includePaths,
quietDeps: true,
}),
);
}),
);

/**
* Watch task for scss development
Expand Down

0 comments on commit 621c353

Please sign in to comment.