Bump @typescript-eslint/parser from 7.13.1 to 7.14.1 #41
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install node modules | |
run: | | |
yarn install --immutable --check-cache | |
- name: Run tests | |
uses: willcaul/jest-github-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
test-command: "yarn test" | |
lint: | |
name: Run Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install node modules | |
run: | | |
yarn install --immutable --check-cache | |
- name: Run ESLint | |
run: | | |
yarn lint --max-warnings=0 | |
import-checks: | |
name: Run Import Checks | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
checks: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install node modules | |
run: | | |
yarn install --immutable --check-cache | |
- name: Run import checks | |
continue-on-error: true | |
run: | | |
yarn link | |
cp -r gh-action-templates/import-check /tmp/import-check | |
pushd /tmp/import-check | |
yarn link stromnetzgraz-api | |
node cjs/index.cjs | |
node esm/index.mjs | |
popd |