Skip to content

Commit

Permalink
Create lint-and-check.yml CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou authored Oct 29, 2024
1 parent bf82af2 commit a264a97
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lint-and-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

on:
push:
branches: '*'

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Lint and check
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts'
cache: 'node_modules'
- run: yarn fmt:check
- run: yarn lint
- run: yarn build

0 comments on commit a264a97

Please sign in to comment.