Skip to content

ci: remove publish.yml #10

ci: remove publish.yml

ci: remove publish.yml #10

Workflow file for this run

name: Tests
on: ['push']
jobs:
build:
runs-on: ubuntu-latest
name: Code Inspection
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 22
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- name: Install
run: yarn install --immutable
- name: Check Code Formatting
if: always()
run: yarn check:formatting
- name: Check Types
if: always()
run: yarn check:types
- name: Lint
if: always()
run: yarn lint
- name: Test
if: always()
run: yarn test
- name: Build
if: always()
run: yarn build
- name: Test Build Output
if: always()
run: yarn build