Skip to content

chore: update GitHub Actions and dependencies (#26) #42

chore: update GitHub Actions and dependencies (#26)

chore: update GitHub Actions and dependencies (#26) #42

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
jobs:
tests:
uses: ./.github/workflows/tests.yml

Check failure on line 11 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yaml" -> "./.github/workflows/tests.yml" : failed to fetch workflow: workflow was not found.
release:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn format
- name: Check linting
run: yarn lint
- name: Run build
run: yarn build
- name: Run Semantic-Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}