Skip to content

feat(fe): add warning for 'x==y;' statement #6219

feat(fe): add warning for 'x==y;' statement

feat(fe): add warning for 'x==y;' statement #6219

# Copyright (C) 2020 Matthew Glazar
# See end of file for extended copyright information.
name: Homebrew package
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
homebrew:
name: ${{ matrix.toolchain.name }}
strategy:
fail-fast: false
matrix:
toolchain:
- {runs_on: macos-11, name: "macOS 11"}
- {runs_on: macos-12, name: "macOS 12"}
runs-on: ${{ matrix.toolchain.runs_on }}
env:
HOMEBREW_NO_ANALYTICS: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
steps:
- name: checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: brew tap
run: brew tap quick-lint/quick-lint-js .
- name: override HEAD revision
run: |
set -x
formula_path="$(brew formula quick-lint/quick-lint-js/quick-lint-js)"
sed -e 's,:branch => "master",:revision => "'"$(git rev-parse HEAD)"'",' "${formula_path}"
printf 'updated formula:\n'
cat "${formula_path}"
- name: brew install
run: brew install --HEAD quick-lint/quick-lint-js/quick-lint-js
- name: test
run: quick-lint-js --version
# quick-lint-js finds bugs in JavaScript programs.
# Copyright (C) 2020 Matthew Glazar
#
# This file is part of quick-lint-js.
#
# quick-lint-js is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# quick-lint-js is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with quick-lint-js. If not, see <https://www.gnu.org/licenses/>.