Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Bump @typescript-eslint/eslint-plugin from 6.8.0 to 6.13.1 #85

Bump @typescript-eslint/eslint-plugin from 6.8.0 to 6.13.1

Bump @typescript-eslint/eslint-plugin from 6.8.0 to 6.13.1 #85

Workflow file for this run

name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
id: setup-waypoint
with:
version: "0.10.5"
- name: assert version is 0.10.5
run: |
if [[ "${{ steps.setup-waypoint.outputs.waypoint-version }}" == "0.10.5" ]]; then
echo "Expected Waypoint version found"
exit 0
else
echo "Unexpected Waypoint version ${{ steps.setup-waypoint.outputs.waypoint-version }} not equal to 0.10.5"
exit 1
fi