chore(deps): update dependency ts-patch to v3.0.2 #566
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: | |
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@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
- uses: open-turo/actions-node/test@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
release-notes: | |
runs-on: ubuntu-latest | |
name: Release notes preview | |
env: | |
NPM_TOKEN: ${{ secrets.OPEN_TURO_NPM_TOKEN }} | |
steps: | |
- uses: open-turo/actions-release/release-notes-preview@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |