ci: remove publish.yml #10
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: 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 |