Merge pull request #370 from extractus/v8.0.3 #588
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 | |
# https://docs.github.com/en/free-pro-team@latest/actions | |
name: ci-test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup Node.js v${{ matrix.node_version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: run npm scripts | |
env: | |
PROXY_SERVER: ${{ secrets.PROXY_SERVER }} | |
run: | | |
npm install | |
npm run lint | |
npm run build --if-present | |
npm run test | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |