Skip to content

Commit 5a5097b

Browse files
authoredAug 21, 2023
Merge pull request #2054 from sass/merge-main
Merge main into feature.color-4
2 parents 216ceb7 + 7d17629 commit 5a5097b

File tree

358 files changed

+15012
-6862
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+15012
-6862
lines changed
 

‎.github/util/initialize/action.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Initialize
2+
description: Check out Dart Sass and build the embedded protocol buffer.
3+
inputs:
4+
github-token: {required: true}
5+
node-version: {required: false, default: 18}
6+
dart-sdk: {required: false, default: stable}
7+
architecture: {required: false}
8+
runs:
9+
using: composite
10+
steps:
11+
- uses: dart-lang/setup-dart@v1
12+
with:
13+
sdk: "${{ inputs.dart-sdk }}"
14+
architecture: "${{ inputs.architecture }}"
15+
16+
- uses: actions/setup-node@v3
17+
with:
18+
node-version: "${{ inputs.node-version }}"
19+
20+
- run: dart pub get
21+
shell: bash
22+
23+
- run: npm install
24+
shell: bash
25+
26+
- uses: bufbuild/buf-setup-action@v1.13.1
27+
with: {github_token: "${{ inputs.github-token }}"}
28+
29+
- name: Check out the language repo
30+
uses: sass/clone-linked-repo@v1
31+
with: {repo: sass/sass, path: build/language}
32+
33+
- name: Generate Dart from protobuf
34+
run: dart run grinder protobuf
35+
env: {UPDATE_SASS_PROTOCOL: false}
36+
shell: bash

‎.github/util/sass-spec/action.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: sass-spec
2+
description: Check out sass-spec and install its dependencies.
3+
runs:
4+
using: composite
5+
steps:
6+
- name: Check out sass-spec
7+
uses: sass/clone-linked-repo@v1
8+
with: {repo: sass/sass-spec}
9+
10+
- run: npm install
11+
working-directory: sass-spec
12+
shell: bash

0 commit comments

Comments
 (0)
Please sign in to comment.