Bump node from 21.4.0-alpine to 21.7.3-alpine #115
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: PullRequestOpen | |
on: | |
pull_request: | |
branches: | |
- main | |
- development | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js '20.5.0' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.5.0' | |
cache: 'npm' | |
- name: Update npm | |
run: npm install -g npm && npm --version | |
- name: Install packages | |
run: npm install --save-dev typescript @types/react @types/node | |
- name: Linting | |
run: npx next lint | |
# test: | |
# name: Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Use Node.js '20.5.0' | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: '20.5.0' | |
# cache: 'npm' | |
# - name: Update npm | |
# run: npm install -g npm && npm --version | |
# - name: Install dependencies | |
# run: npm ci | |
# - name: Copy env | |
# run: cp .env.example .env | |
# - name: Test | |
# run: npx jest --silent -c ./src/jest/jest.unit.config.ts | |
codeql: | |
name: CodeQL | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:javascript" |