Skip to content

ci: publish floating major version tag and stop committing dist #29

ci: publish floating major version tag and stop committing dist

ci: publish floating major version tag and stop committing dist #29

Workflow file for this run

name: Verify
on: [pull_request]
env:
NODE_VERSION: 24.x
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Check
run: yarn check
- name: Type check
run: yarn types:check
- name: Test
run: yarn test:cov
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: yarn build