Bump sass from 1.79.1 to 1.79.2 #3698
Workflow file for this run
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
name: Test | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: read | |
env: | |
FORCE_COLOR: 3 | |
BCD_DIR: ./browser-compat-data | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- name: Linux | |
runs-on: ubuntu-latest | |
# - name: macOS | |
# runs-on: macos-latest | |
name: Test (${{ matrix.name }}) | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- name: Clone collector | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Clone browser-compat-data | |
uses: actions/checkout@v4 | |
with: | |
repository: mdn/browser-compat-data | |
path: browser-compat-data | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Prepare browser-compat-data | |
run: npm ci | |
working-directory: browser-compat-data | |
- run: npm ci | |
- run: npm run format | |
- run: npm run build | |
- run: npm run unittest | |
# ensure we can start the server without dev dependencies | |
- name: Production smoke test | |
run: | | |
npm ci --production | |
npm start & | |
npx wait-on -t 10000 -v http://localhost:8080 | |
env: | |
NODE_ENV: production | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |