Bump @typescript-eslint/parser from 6.7.0 to 6.9.1 #331
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: Test | |
on: push | |
jobs: | |
test: | |
name: Action Test | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
# - windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: "Install Dependencies" | |
run: npm install | |
- name: "Build the package" | |
run: npm run build | |
- name: Run Eslint | |
run: npm test | |
- name: it can run a single cell | |
uses: ./ | |
with: | |
workflows: testMe | |
- name: it can run multiple cell ids | |
uses: ./ | |
with: | |
workflows: | | |
run1 | |
run2 | |
run3 | |
- name: it can run multiple cell ids in parallel | |
uses: ./ | |
with: | |
parallel: true | |
workflows: | | |
run1 | |
run2 | |
run3 |