Bump eslint from 9.13.0 to 9.14.0 in /app-auth/graphapponlytutorial #254
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.js build | |
on: | |
push: | |
branches: [ main, live ] | |
pull_request: | |
branches: [ main, live ] | |
workflow_dispatch: | |
jobs: | |
build_user_auth: | |
defaults: | |
run: | |
working-directory: user-auth/graphtutorial | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x, 20.x ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy settings file | |
run: | | |
cp appSettings.example.js appSettings.js | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
build_app_auth: | |
defaults: | |
run: | |
working-directory: app-auth/graphapponlytutorial | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x, 20.x ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy settings file | |
run: | | |
cp appSettings.example.js appSettings.js | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint |