Skip to content

Commit

Permalink
Merge pull request #1 from Bi2Nb9O3-Studio/dev
Browse files Browse the repository at this point in the history
Actions Update
  • Loading branch information
Bi2Nb9O3-Studio authored Sep 28, 2024
2 parents 3ded0be + 37d9a46 commit 8890ab8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/[email protected]
with:
# Artifact name
name: build # optional, default is artifact
name: build ${{ matrix.node-version }} # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: ./build

23 changes: 23 additions & 0 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ESLint & Prettier

on:
pull_request:
branches: [main]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Check for remaining lint issues
run: npm run check

0 comments on commit 8890ab8

Please sign in to comment.