Skip to content

Build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.61.0 #570

Build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.61.0

Build(deps-dev): Bump @typescript-eslint/eslint-plugin from 5.60.0 to 5.61.0 #570

Workflow file for this run

name: "units-test"
on:
pull_request:
merge_group:
push:
branches:
- main
- "releases/*"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: sh
jobs:
# unit tests
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v3.6.0
with:
node-version: 16.x
cache: npm
- run: npm ci
- run: npm run all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# test action works running from the graph
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: ./
id: z3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo "${{ steps.z3.outputs.z3-root }}"
- run: '[ -d "${{ steps.z3.outputs.z3-root }}" ] || exit 1'
- if: runner.os != 'Windows'
run: '[ -f "${{ steps.z3.outputs.z3-root }}/bin/z3" ] || exit 1'
- if: runner.os == 'Windows'
run: '[ -f "${{ steps.z3.outputs.z3-root }}\bin\z3.exe" ] || exit 1'