Skip to content

Commit

Permalink
update github actions from v1 to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
montoyamoraga authored Mar 30, 2023
1 parent 2f6df65 commit d868b2f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node: [14, 16, 18]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint

0 comments on commit d868b2f

Please sign in to comment.