Lerna ci #157
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
# Github actions workflow name | |
name: Nodejs Test | |
# Triggers the workflow on push or pull request events | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
platform_spec_test: | |
name: 'Tests on ${{matrix.os}} with node${{matrix.node}}' | |
strategy: | |
matrix: | |
# Test all mainstream operating system | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node: [18] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Pull repo to test machine | |
- uses: actions/checkout@v2 | |
# Configures the node version used on GitHub-hosted runners | |
- uses: actions/setup-node@v2 | |
with: | |
# The Node.js version to configure | |
node-version: ${{ matrix.node }} | |
- name: Install npm dependencies | |
run: npm install | |
- name: Print put node & npm version | |
# Output useful info for debugging. | |
run: node --version && npm --version | |
- name: Print ts and ts-node version | |
run: cd packages/less && npm install ts-node@latest && npm list typescript && npm list ts-node | |
- name: Run unit test | |
run: npm run test -w packages/less | |
fast_node_test: | |
name: 'Tests on ${{matrix.os}} with node${{matrix.node}}' | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [16, 20] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install npm dependencies | |
run: npm install | |
- name: Print put node & npm version | |
run: node --version && npm --version | |
- name: Print ts and ts-node version | |
run: cd packages/less && npm install ts-node@latest && npm list typescript && npm list ts-node | |
- name: Run unit test | |
run: npm run test -w packages/less |