Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
refactorian committed Mar 22, 2024
1 parent d893724 commit f7e7edb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/nest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: NestJS

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- name: Copy repository
uses: actions/checkout@v3

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

- name: Install Yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn install

- name: Lint code
run: yarn lint

- name: Run tests
run: yarn test

0 comments on commit f7e7edb

Please sign in to comment.