Skip to content

fix(WindowsApplicationIconExtractor): ignore case of file extension #1203

fix(WindowsApplicationIconExtractor): ignore case of file extension

fix(WindowsApplicationIconExtractor): ignore case of file extension #1203

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
name: Build
steps:
- name: Checkout current commit/branch/tag
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
env:
NODE_ENV: development
- name: Run typecheck
run: npm run typecheck
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run prettier:check
- name: Run tests
run: npm run test
- name: Build app
run: npm run build
env:
NODE_ENV: production