Skip to content

Commit

Permalink
Inits ci push config
Browse files Browse the repository at this point in the history
  • Loading branch information
didley committed Jul 29, 2023
1 parent c6da1c0 commit fcde404
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pr.ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull Request CI

on: push

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout project
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: $npm_execpath install

- name: Run CI command (lint/type check/unit tests)
if: always()
run: $npm_execpath run ci

0 comments on commit fcde404

Please sign in to comment.