Skip to content

Commit

Permalink
Chore: updated workflow node versions to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Jul 27, 2024
1 parent f1de7ad commit dcb9ad4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: "18.x"
registry-url: "https://registry.npmjs.org"

- name: Configure git
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint', 'test']
command: ["lint", "test"]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout repository 🛎️
uses: actions/checkout@v3

- name: Setup Node.js 16 📗
- name: Setup Node.js 18 📗
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install dependencies 📦
run: npm install -g pnpm@8 && pnpm install --ignore-scripts
run: npm install -g pnpm@9.6.0 && pnpm install --ignore-scripts

- name: Run checks 🧪
run: |
pnpm --filter @sliit-foss/eslint-config-internal build
pnpm ${{ matrix.command }}
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN_GITHUB }}
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}

0 comments on commit dcb9ad4

Please sign in to comment.