FLUID-6785: add package-lock.json to version control #370
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: Automated tests | |
on: | |
push: | |
paths: | |
- ".nycrc" | |
- "package.json" | |
- "buildModules.js" | |
- "src/**/*.html" | |
- "src/**/*.js" | |
- "src/**/*.json" | |
- "tests/**/*.html" | |
- "tests/**/*.js" | |
- "tests/**/*.json" | |
pull_request: | |
paths: | |
- ".nycrc" | |
- "package.json" | |
- "buildModules.js" | |
- "src/**/*.html" | |
- "src/**/*.js" | |
- "src/**/*.json" | |
- "tests/**/*.html" | |
- "tests/**/*.js" | |
- "tests/**/*.json" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
node-version: [18.x, 20.x, 22.x] | |
env: | |
HEADLESS: true | |
steps: | |
- name: Prepare git | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Install Node.js dependencies | |
run: npm install | |
- name: Run browser tests | |
run: npm run test:browser | |
- name: Run Node.js tests | |
run: npm run test:node | |
- name: Update code coverage | |
run: npm run posttest | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
files: ./reports/coverage-final.json | |
flags: unit-tests | |
token: ${{ secrets.CODECOV_TOKEN }} |