chore(deps): update dependency typescript to ^5.7.2 #586
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: CI | |
on: [push] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create npm configuration | |
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc | |
env: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test | |
rust-tests-working: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1 | |
- uses: ./ | |
with: | |
command: check | |
toolchain: stable | |
args: --package working --all-targets --all-features | |
rust-tests-not-working: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1 | |
with: | |
matcher: false | |
rustflags: "" | |
- uses: ./ | |
with: | |
command: build | |
args: --package not_working | |
- uses: ./ | |
with: | |
command: build | |
args: --package not_working --all-features | |
continue-on-error: true | |
rust-tests-cross: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1 | |
with: | |
target: aarch64-unknown-linux-gnu | |
- uses: ./ | |
with: | |
command: build | |
args: --target aarch64-unknown-linux-gnu | |
use-cross: true | |
working-directory: rust_tests/working | |
rust-clippy-warnings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1 | |
with: | |
matcher: false | |
rustflags: "" | |
- uses: ./ | |
with: | |
command: clippy | |
args: --package clippy_warnings | |
rust-fmt-warnings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1 | |
with: | |
matcher: false | |
rustflags: "" | |
- uses: ./ | |
with: | |
command: fmt | |
args: --package fmt_warnings --check | |
continue-on-error: true |