Skip to content

Commit

Permalink
Simplify GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdog committed Dec 21, 2023
1 parent af843ab commit 1cc8d56
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,11 @@ jobs:
runs-on: ubuntu-latest
container: ubuntu:focal

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '16.x'
- run: npm ci
- run: npm run lint-check
# - run: npm run compile
Expand Down

0 comments on commit 1cc8d56

Please sign in to comment.