Skip to content

Commit

Permalink
Bump gha actions
Browse files Browse the repository at this point in the history
- checkout@v4
- setup-node@v4
- use cache option from setup-node
- skip duplicated build on q/*/**

Issue: BKTCLT-17
  • Loading branch information
francoisferrand committed May 10, 2024
1 parent b984289 commit 0f052b2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ name: tests
on:
push:
branches-ignore:
- 'development/**'
- development/**
- q/*/**

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
cache: yarn
- name: install dependencies
run: yarn install --immutable
- name: run lint
Expand Down

0 comments on commit 0f052b2

Please sign in to comment.