Bump @typescript-eslint/eslint-plugin from 5.19.0 to 6.18.1 #291
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: "🧪 Node Tests" | |
on: [pull_request] | |
env: | |
GITHUB_HASH: $(git rev-parse --short "$GITHUB_SHA") | |
jobs: | |
release: | |
name: Run general NPM unit and itegration tests | |
strategy: | |
matrix: | |
node-version: [16.x] | |
go-version: ['1.20'] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🟢 Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install npm depencencies | |
run: npm ci | |
working-directory: ./ | |
- name: Run Tests | |
run: npm test | |
working-directory: ./ |