Skip to content

chore(deps): update all non-major dependencies #666

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #666

Workflow file for this run

name: CI
on:
push:
jobs:
release-notes:
name: Release notes preview
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- uses: open-turo/actions-release/release-notes-preview@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
NPM_TOKEN: ${{ secrets.OPEN_TURO_NPM_TOKEN }}
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Download actionlint
run: |
mkdir -p "$HOME/bin"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) latest "$HOME/bin"
echo "${HOME}/bin" >> "$GITHUB_PATH"
- uses: open-turo/actions-node/lint@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: open-turo/actions-node/test@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}