Skip to content

Commit

Permalink
bump to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrickaby committed Feb 1, 2024
1 parent 95c46fa commit 6d33725
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/assertions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,32 @@ name: Assertions

on:
pull_request:
branches: [main, develop]
branches: [main]

workflow_dispatch:

jobs:
lint:
assertions:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'

- name: Install dependencies
run: npm ci
- name: Copy .env
run: cp .env.example .env

- name: Install Dependencies
run: npm ci --ignore-scripts

- name: Lint
run: npm run lint

- name: Build
run: npm run build

0 comments on commit 6d33725

Please sign in to comment.