chore: no longer testing on node 14 #200
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 | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions | |
name: CI-CD | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
node_tests: | |
name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node: | |
- 16 | |
# - 18 TODO bring this back | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Install Node ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
- name: Run TypeScript tests | |
run: npm run test:typescript | |
- name: Run Node tests | |
run: npm run coverage:node | |
- name: Send code coverage results to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
browser_tests: | |
name: Browser Tests | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest # Chrome, Firefox, Safari (TODO) | |
# - windows-latest # Internet Explorer, Edge | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run coverage:browser | |
- name: Combine code coverage data into a single file | |
shell: bash | |
run: | | |
ls -Rlh coverage/*/lcov.info | |
cat coverage/*/lcov.info > ./coverage/lcov.info | |
- name: Send code coverage results to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: | |
- node_tests | |
- browser_tests | |
steps: | |
- name: Let Coveralls know that all tests have finished | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
deploy: | |
name: Publish to NPM | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: | |
- node_tests | |
- browser_tests | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Publish to NPM | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
- name: Prepare the non-scoped packaged | |
run: | | |
cp LICENSE *.md dist | |
VERSION=$(node -e "console.log(require('./package.json').version)") | |
sed -i "s/X.X.X/${VERSION}/g" dist/package.json | |
- name: Publish the non-scoped package to NPM | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: dist/package.json |