Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Run JS API tests for the Node embedded host
Browse files Browse the repository at this point in the history
Since this provides a substantial amount of the Node embedded
implementation, it's sometimes necessary to test that updates continue
to pass (or begin to pass) the JS API tests, as for example in #83.
  • Loading branch information
nex3 committed Apr 7, 2022
1 parent 3950072 commit faf67ca
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -57,6 +57,88 @@ jobs:
- name: Run tests
run: dart run test -r expanded

# The versions should be kept up-to-date with the latest LTS Node releases.
# They next need to be rotated October 2021. See
# https://github.com/nodejs/Release.
sass_spec:
name: 'JS API Tests | Node ${{ matrix.node_version }} | ${{ matrix.os }}'
runs-on: ${{ matrix.os }}-latest

strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node_version: [16]
include:
# Include LTS versions on Ubuntu
- os: ubuntu
node_version: 14
- os: ubuntu
node_version: 12

steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with: {sdk: stable}
- uses: actions/setup-node@v2
with: {node-version: "${{ matrix.node_version }}"}
- uses: arduino/setup-protoc@v1
with:
version: ${{ env.PROTOC_VERSION }}
repo-token: '${{ github.token }}'

- name: Check out Dart Sass
uses: sass/clone-linked-repo@v1
with: {repo: sass/dart-sass, default-ref: null}

- name: Add Dart Sass to pubspec
run: |
if [[ -d build/dart-sass ]]; then
(
echo "dependency_overrides:"
echo " sass: {path: build/dart-sass}"
echo " sass_api: {path: build/dart-sass/pkg/sass_api}"
) >> pubspec.yaml
fi
shell: bash

- name: Check out embedded Sass protocol
uses: sass/clone-linked-repo@v1
with: {repo: sass/embedded-protocol, path: build/embedded-protocol}

- name: Check out the embedded host
uses: sass/clone-linked-repo@v1
with: {repo: sass/embedded-host-node}

- name: Check out the JS API definition
uses: sass/clone-linked-repo@v1
with: {repo: sass/sass, path: language}

- run: npm install
working-directory: embedded-host-node
- name: npm run init
run: |
npm run init -- --protocol-path=../build/embedded-protocol --compiler-path=.. --api-path=../language
working-directory: embedded-host-node

- name: Check out sass-spec
uses: sass/clone-linked-repo@v1
with: {repo: sass/sass-spec}

- name: Install sass-spec dependencies
run: npm install
working-directory: sass-spec

- name: Compile embedded host
run: |
npm run compile
ln -s {`pwd`/,dist/}lib/src/vendor/dart-sass-embedded
working-directory: embedded-host-node

- name: Run tests
run: npm run js-api-spec -- --sassPackage .. --sassSassRepo ../language
working-directory: sass-spec

static_analysis:
name: Static analysis
runs-on: ubuntu-latest
Expand Down

0 comments on commit faf67ca

Please sign in to comment.