Merge branch 'rc-v0.4.31' into s154-stablized-v0.4.31 #1104
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: CI - Tools | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
ci_tools: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# 16 is min version recommended to users | |
# 18 released 2022-04-19 | |
# 19 released 2022-10-18 | |
node-version: [ 19 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
cache-dependency-path: ./tools/psoxy-test | |
- name: Install dependencies | |
working-directory: ./tools/psoxy-test | |
run: npm i | |
- name: Run test | |
working-directory: ./tools/psoxy-test | |
run: npm test |