Skip to content

Bump @typescript-eslint/parser from 5.59.6 to 5.60.1 in /js/js-flipper #15129

Bump @typescript-eslint/parser from 5.59.6 to 5.60.1 in /js/js-flipper

Bump @typescript-eslint/parser from 5.59.6 to 5.60.1 in /js/js-flipper #15129

Workflow file for this run

name: Packer
# This action runs on 'git push' and PRs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup toolchain
uses: dtolnay/rust-toolchain@stable
# The selection of Rust toolchain is made based on the particular '@rev'
# of this Action being requested. For example "dtolnay/rust-toolchain@nightly"
# pulls in the nightly Rust toolchain, while "dtolnay/[email protected]"
# pulls in '1.42.0'.
- name: Test
run: cd packer && cargo test
- name: Format
run: cd packer && cargo fmt -- --check
continue-on-error: true
- name: Lint
run: cd packer && cargo clippy -- -Dwarnings
continue-on-error: true