Skip to content

Commit

Permalink
Merge pull request #92 from eugene-serb/dev
Browse files Browse the repository at this point in the history
Release 1.0.19
  • Loading branch information
eugene-serb authored Jun 17, 2023
2 parents 222a004 + af9877b commit 4882726
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Format

on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
workflow_dispatch:

jobs:
format:
strategy:
matrix:
node-version: [18]
os: [ubuntu-22.04]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run format

0 comments on commit 4882726

Please sign in to comment.